Skip to content

Commit 36f92a5

Browse files
[GLUTEN-6887][VL] Daily Update Velox Version (2024_12_06) (#8162)
Upstream Velox's New Commits: 3dd572fe4 by Jimmy Lu, fix: Allow association with a delta file with no corresponding row in case of empty base file (11746) 37a5ffbb1 by Dark Knight, fix: Revert PR 1137 (11743) 627adacd7 by Xiaoxuan Meng, feat: Fix the task hanging under serialized execution mode (11747) e40259fc1 by Xiaoxuan Meng, feat: Add auto scale writer support (11702) 83cfd4f7c by Wenbin Lin, Revert D66724539: refactor: Use KeepAlive instead of Executor* 09fbd548e by Pedro Eugenio Rocha Pedreira, refactor: Use KeepAlive instead of Executor* (11732) 8b4663df4 by David Reveman, feat: Add key/value support to radix sort in breeze (11733) eb49cea62 by Hongze Zhang, test: A test case to guard against output order of LocalPartiton(kGather) in serial execution mode (11726)
1 parent 5002106 commit 36f92a5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cpp/velox/substrait/SubstraitToVeloxPlan.cc

+1
Original file line numberDiff line numberDiff line change
@@ -1076,6 +1076,7 @@ core::PlanNodePtr SubstraitToVeloxPlanConverter::toVeloxPlan(const ::substrait::
10761076
return std::make_shared<core::LocalPartitionNode>(
10771077
nextPlanNodeId(),
10781078
core::LocalPartitionNode::Type::kGather,
1079+
false,
10791080
std::make_shared<core::GatherPartitionFunctionSpec>(),
10801081
projectedChildren);
10811082
}

ep/build-velox/src/get_velox.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -exu
1818

1919
VELOX_REPO=https://github.com/oap-project/velox.git
20-
VELOX_BRANCH=2024_12_05
20+
VELOX_BRANCH=2024_12_06
2121
VELOX_HOME=""
2222

2323
OS=`uname -s`

0 commit comments

Comments
 (0)