Skip to content

Commit

Permalink
fix compile error due to merge
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyFan2002 committed Mar 21, 2023
1 parent fa5420d commit 8fafa51
Showing 1 changed file with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ use crate::plans::PatternPlan;
use crate::plans::RelOp;
use crate::plans::ScalarExpr;
use crate::plans::ScalarItem;
use crate::plans::Unnest;
use crate::plans::WindowFunc;

pub struct RulePushDownFilterEvalScalar {
Expand Down Expand Up @@ -249,18 +248,6 @@ impl RulePushDownFilterEvalScalar {
func_name: func.func_name.clone(),
}))
}
ScalarExpr::Unnest(unnest) => {
let arg = Self::replace_predicate(
&unnest.argument,
items,
eval_scalar_columns,
eval_scalar_child_columns,
)?;
Ok(ScalarExpr::Unnest(Unnest {
argument: Box::new(arg),
return_type: unnest.return_type.clone(),
}))
}
ScalarExpr::CastExpr(cast) => {
let arg = Self::replace_predicate(
&cast.argument,
Expand Down

0 comments on commit 8fafa51

Please sign in to comment.