Skip to content

Commit

Permalink
Fix compilation issue (#24213)
Browse files Browse the repository at this point in the history
Added the new localWriter argument.
  • Loading branch information
zation99 authored Dec 6, 2024
1 parent 4c44dcf commit 1f1fd91
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,7 @@ std::shared_ptr<core::LocalPartitionNode> buildLocalSystemPartitionNode(
return std::make_shared<core::LocalPartitionNode>(
node->id,
type,
false,
std::make_shared<HashPartitionFunctionSpec>(outputType, keyChannels),
std::move(sourceNodes));
}
Expand All @@ -363,6 +364,7 @@ std::shared_ptr<core::LocalPartitionNode> buildLocalSystemPartitionNode(
return std::make_shared<core::LocalPartitionNode>(
node->id,
type,
false,
std::make_shared<RoundRobinPartitionFunctionSpec>(),
std::move(sourceNodes));
}
Expand Down Expand Up @@ -455,7 +457,11 @@ core::PlanNodePtr VeloxQueryPlanConverterBase::toVeloxQueryPlan(
return core::LocalPartitionNode::gather(node->id, std::move(sourceNodes));
}
return std::make_shared<core::LocalPartitionNode>(
node->id, type, std::shared_ptr(std::move(spec)), std::move(sourceNodes));
node->id,
type,
false,
std::shared_ptr(std::move(spec)),
std::move(sourceNodes));
}

namespace {
Expand Down
2 changes: 1 addition & 1 deletion presto-native-execution/velox
Submodule velox updated 134 files

0 comments on commit 1f1fd91

Please sign in to comment.