pub trait ExtractExpr {
// Required method
fn expressions_consider_join(&self) -> Vec<Expr>;
}
Expand description
A trait to extract expressions from a logical plan.
Required Methods§
Sourcefn expressions_consider_join(&self) -> Vec<Expr>
fn expressions_consider_join(&self) -> Vec<Expr>
Gets expressions from a logical plan. It handles [Join] specially so [LogicalPlan::with_new_exprs()] can use the expressions this method returns.