We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7497eb commit bcb311fCopy full SHA for bcb311f
1 file changed
datafusion/physical-plan/src/aggregates/mod.rs
@@ -1667,9 +1667,9 @@ impl ExecutionPlan for AggregateExec {
1667
}
1668
1669
Ok(Some(Arc::new(Self {
1670
- group_by,
1671
- aggr_expr,
1672
- filter_expr,
+ group_by: Arc::new(group_by),
+ aggr_expr: aggr_expr.into(),
+ filter_expr: filter_expr.into(),
1673
dynamic_filter: None,
1674
metrics: ExecutionPlanMetricsSet::new(),
1675
..self.clone()
0 commit comments