Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaxx7 committed Mar 1, 2023
1 parent 5fa588b commit 8012832
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ use crate::plans::AggregateMode;
use crate::plans::Filter;
use crate::plans::PatternPlan;
use crate::plans::RelOp;
use crate::plans::RelOp::Aggregate as OpAggregate;
use crate::plans::RelOp::Pattern;
use crate::plans::RelOperator;

Expand Down Expand Up @@ -64,12 +63,12 @@ impl RulePushDownFilterAggregate {
.into(),
SExpr::create_unary(
PatternPlan {
plan_type: OpAggregate,
plan_type: RelOp::Aggregate,
}
.into(),
SExpr::create_unary(
PatternPlan {
plan_type: OpAggregate,
plan_type: RelOp::Aggregate,
}
.into(),
SExpr::create_leaf(PatternPlan { plan_type: Pattern }.into()),
Expand Down

0 comments on commit 8012832

Please sign in to comment.