diff --git a/cpp/velox/compute/WholeStageResultIterator.cc b/cpp/velox/compute/WholeStageResultIterator.cc index 1a990ac75e0a..cd72c714cb1f 100644 --- a/cpp/velox/compute/WholeStageResultIterator.cc +++ b/cpp/velox/compute/WholeStageResultIterator.cc @@ -96,7 +96,7 @@ WholeStageResultIterator::WholeStageResultIterator( 0, std::move(queryCtx), velox::exec::Task::ExecutionMode::kSerial); - if (!task_->supportsSingleThreadedExecution()) { + if (!task_->supportSerialExecutionMode()) { throw std::runtime_error("Task doesn't support single thread execution: " + planNode->toString()); } auto fileSystem = velox::filesystems::getFileSystem(spillDir, nullptr); diff --git a/ep/build-velox/src/get_velox.sh b/ep/build-velox/src/get_velox.sh index 12186a56bfa8..a824d6602ebf 100755 --- a/ep/build-velox/src/get_velox.sh +++ b/ep/build-velox/src/get_velox.sh @@ -17,7 +17,7 @@ set -exu VELOX_REPO=https://github.com/oap-project/velox.git -VELOX_BRANCH=2024_08_28_fix +VELOX_BRANCH=2024_08_31 VELOX_HOME="" OS=`uname -s`