Skip to content

Commit

Permalink
Reuse NamePreserver in SimplifyExpressions (#12238)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgao committed Aug 30, 2024
1 parent 94d178e commit e603185
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
2 changes: 2 additions & 0 deletions datafusion/expr/src/expr_rewriter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,8 @@ impl NamePreserver {
/// Create a new NamePreserver for rewriting the `expr` that is part of the specified plan
pub fn new(plan: &LogicalPlan) -> Self {
Self {
// The schema of Filter and Join nodes comes from their inputs rather than their output expressions,
// so there is no need to use aliases to preserve expression names.
use_alias: !matches!(plan, LogicalPlan::Filter(_) | LogicalPlan::Join(_)),
}
}
Expand Down
18 changes: 7 additions & 11 deletions datafusion/optimizer/src/simplify_expressions/simplify_exprs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ use datafusion_expr::simplify::SimplifyContext;
use datafusion_expr::utils::merge_schema;

use crate::optimizer::ApplyOrder;
use crate::utils::NamePreserver;
use crate::{OptimizerConfig, OptimizerRule};

use super::ExprSimplifier;
Expand Down Expand Up @@ -119,18 +120,13 @@ impl SimplifyExpressions {
simplifier
};

// the output schema of a filter or join is the input schema. Thus they
// can't handle aliased expressions
let use_alias = !matches!(plan, LogicalPlan::Filter(_) | LogicalPlan::Join(_));
// Preserve expression names to avoid changing the schema of the plan.
let name_preserver = NamePreserver::new(&plan);
plan.map_expressions(|e| {
let new_e = if use_alias {
// TODO: unify with `rewrite_preserving_name`
let original_name = e.name_for_alias()?;
simplifier.simplify(e)?.alias_if_changed(original_name)
} else {
simplifier.simplify(e)
}?;

let original_name = name_preserver.save(&e)?;
let new_e = simplifier
.simplify(e)
.and_then(|expr| original_name.restore(expr))?;
// TODO it would be nice to have a way to know if the expression was simplified
// or not. For now conservatively return Transformed::yes
Ok(Transformed::yes(new_e))
Expand Down

0 comments on commit e603185

Please sign in to comment.