Skip to content

Commit

Permalink
[GLUTEN-6887][VL] Daily Update Velox Version (2024_08_31) (apache#7070)
Browse files Browse the repository at this point in the history
Upstream Velox's New Commits:

ede7d0bff by Hongze Zhang, Code cleanup to use concept serial / parallel to replace single-threaded / multi-threaded as task execution modes (10792)
7af17de56 by Jia Ke, Improve the FlushPolicyFactory to make the client can specify flush policy (8864)
4499332be by Chengcheng Jin, Fix Operator outputBatchRows may overflow (10868)
  • Loading branch information
GlutenPerfBot authored and shamirchen committed Oct 14, 2024
1 parent 706b5c7 commit 60b2554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cpp/velox/compute/WholeStageResultIterator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion ep/build-velox/src/get_velox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 60b2554

Please sign in to comment.