File tree Expand file tree Collapse file tree 3 files changed +0
-252
lines changed
Expand file tree Collapse file tree 3 files changed +0
-252
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ pub mod filter_null_join_keys;
3131pub mod merge_projection;
3232pub mod optimizer;
3333pub mod propagate_empty_relation;
34- pub mod push_down_aggregation;
3534pub mod push_down_filter;
3635pub mod push_down_limit;
3736pub mod push_down_projection;
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ use crate::filter_null_join_keys::FilterNullJoinKeys;
3131use crate :: merge_projection:: MergeProjection ;
3232use crate :: plan_signature:: LogicalPlanSignature ;
3333use crate :: propagate_empty_relation:: PropagateEmptyRelation ;
34- use crate :: push_down_aggregation:: PushDownAggregation ;
3534use crate :: push_down_filter:: PushDownFilter ;
3635use crate :: push_down_limit:: PushDownLimit ;
3736use crate :: push_down_projection:: PushDownProjection ;
@@ -253,7 +252,6 @@ impl Optimizer {
253252 Arc :: new( CommonSubexprEliminate :: new( ) ) ,
254253 Arc :: new( PushDownProjection :: new( ) ) ,
255254 Arc :: new( EliminateProjection :: new( ) ) ,
256- Arc :: new( PushDownAggregation :: new( ) ) ,
257255 // PushDownProjection can pushdown Projections through Limits, do PushDownLimit again.
258256 Arc :: new( PushDownLimit :: new( ) ) ,
259257 ] ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments