Function datafusion_expr::expr_rewriter::unnormalize_col
source · pub fn unnormalize_col(expr: Expr) -> Expr
Expand description
Recursively ‘unnormalize’ (remove all qualifiers) from an expression tree.
For example, if there were expressions like foo.bar
this would
rewrite it to just bar
.