Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Jul 24, 2024
1 parent 1e195fc commit 5e816a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/frontend/src/optimizer/plan_node/logical_agg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -314,16 +314,16 @@ impl LogicalAgg {
}
}
let normal = AggInfo {
calls: approx_percentile_agg_calls,
calls: non_approx_percentile_agg_calls,
col_mapping: ColIndexMapping::new(
approx_percentile_col_mapping,
non_approx_percentile_col_mapping,
self.agg_calls().len(),
),
};
let approx = AggInfo {
calls: non_approx_percentile_agg_calls,
calls: approx_percentile_agg_calls,
col_mapping: ColIndexMapping::new(
non_approx_percentile_col_mapping,
approx_percentile_col_mapping,
self.agg_calls().len(),
),
};
Expand Down

0 comments on commit 5e816a1

Please sign in to comment.