Skip to content

Commit

Permalink
chore: Remove ObjectHashAggregate from BaseAggregateExec pattern as i…
Browse files Browse the repository at this point in the history
…t is not supported
  • Loading branch information
viirya committed Oct 1, 2024
1 parent 84cccf7 commit c60db4d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2813,8 +2813,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
}

case aggregate: BaseAggregateExec
if (aggregate.isInstanceOf[HashAggregateExec] ||
aggregate.isInstanceOf[ObjectHashAggregateExec]) &&
if aggregate.isInstanceOf[HashAggregateExec] &&
CometConf.COMET_EXEC_AGGREGATE_ENABLED.get(conf) =>
val groupingExpressions = aggregate.groupingExpressions
val aggregateExpressions = aggregate.aggregateExpressions
Expand Down

0 comments on commit c60db4d

Please sign in to comment.