Skip to content

Commit

Permalink
[BugFix] disable bucket agg when enable spill (#52922)
Browse files Browse the repository at this point in the history
Signed-off-by: stdpain <[email protected]>
  • Loading branch information
stdpain authored Nov 18, 2024
1 parent b6b44e4 commit f28f98a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions be/src/exec/aggregate/aggregate_blocking_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ pipeline::OpFactories AggregateBlockingNode::decompose_to_pipeline(pipeline::Pip
} else {
if (runtime_state()->enable_spill() && runtime_state()->enable_agg_spill() && has_group_by_keys) {
ops_with_source = _decompose_to_pipeline<AggregatorFactory, SpillableAggregateBlockingSourceOperatorFactory,
SpillableAggregateBlockingSinkOperatorFactory>(
ops_with_sink, context, use_per_bucket_optimize && has_group_by_keys);
SpillableAggregateBlockingSinkOperatorFactory>(ops_with_sink,
context, false);
} else {
ops_with_source = _decompose_to_pipeline<AggregatorFactory, AggregateBlockingSourceOperatorFactory,
AggregateBlockingSinkOperatorFactory>(
Expand Down

0 comments on commit f28f98a

Please sign in to comment.