Skip to content

Commit bcb311f

Browse files
committed
rebase fixes
1 parent c7497eb commit bcb311f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • datafusion/physical-plan/src/aggregates

datafusion/physical-plan/src/aggregates/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,9 +1667,9 @@ impl ExecutionPlan for AggregateExec {
16671667
}
16681668

16691669
Ok(Some(Arc::new(Self {
1670-
group_by,
1671-
aggr_expr,
1672-
filter_expr,
1670+
group_by: Arc::new(group_by),
1671+
aggr_expr: aggr_expr.into(),
1672+
filter_expr: filter_expr.into(),
16731673
dynamic_filter: None,
16741674
metrics: ExecutionPlanMetricsSet::new(),
16751675
..self.clone()

0 commit comments

Comments
 (0)