Skip to content

Commit 1eb7873

Browse files
author
Pete Stevenson
authored
Temporarily disable partial aggregates. (#1692)
1 parent bbcd2d0 commit 1eb7873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/carnot/planner/distributed/coordinator/coordinator.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ StatusOr<SchemaToAgentsMap> LoadSchemaMap(
179179

180180
StatusOr<std::unique_ptr<DistributedPlan>> CoordinatorImpl::CoordinateImpl(const IR* logical_plan) {
181181
PX_ASSIGN_OR_RETURN(std::unique_ptr<Splitter> splitter,
182-
Splitter::Create(compiler_state_, /* support_partial_agg */ true));
182+
Splitter::Create(compiler_state_, /* support_partial_agg */ false));
183183
PX_ASSIGN_OR_RETURN(std::unique_ptr<BlockingSplitPlan> split_plan,
184184
splitter->SplitKelvinAndAgents(logical_plan));
185185
auto distributed_plan = std::make_unique<DistributedPlan>();

0 commit comments

Comments
 (0)