pub struct PullUpCorrelatedExpr {
pub join_filters: Vec<Expr>,
pub correlated_subquery_cols_map: HashMap<LogicalPlan, BTreeSet<Column>>,
pub in_predicate_opt: Option<Expr>,
pub exists_sub_query: bool,
pub can_pull_up: bool,
pub need_handle_count_bug: bool,
pub collected_count_expr_map: HashMap<LogicalPlan, ExprResultMap>,
pub pull_up_having_expr: Option<Expr>,
}
Expand description
This struct rewrite the sub query plan by pull up the correlated expressions(contains outer reference columns) from the inner subquery’s ‘Filter’. It adds the inner reference columns to the ‘Projection’ or ‘Aggregate’ of the subquery if they are missing, so that they can be evaluated by the parent operator as the join condition.
Fields§
§join_filters: Vec<Expr>
mapping from the plan to its holding correlated columns
in_predicate_opt: Option<Expr>
§exists_sub_query: bool
Is this an Exists(Not Exists) SubQuery. Defaults to FALSE
can_pull_up: bool
Can the correlated expressions be pulled up. Defaults to TRUE
need_handle_count_bug: bool
Do we need to handle the Count bug during the pull up process
collected_count_expr_map: HashMap<LogicalPlan, ExprResultMap>
mapping from the plan to its expressions’ evaluation result on empty batch
pull_up_having_expr: Option<Expr>
pull up having expr, which must be evaluated after the Join
Implementations§
pub fn new() -> Self
sourcepub fn with_need_handle_count_bug(self, need_handle_count_bug: bool) -> Self
pub fn with_need_handle_count_bug(self, need_handle_count_bug: bool) -> Self
Set if we need to handle the Count bug during the pull up process
sourcepub fn with_in_predicate_opt(self, in_predicate_opt: Option<Expr>) -> Self
pub fn with_in_predicate_opt(self, in_predicate_opt: Option<Expr>) -> Self
Set the in_predicate_opt
sourcepub fn with_exists_sub_query(self, exists_sub_query: bool) -> Self
pub fn with_exists_sub_query(self, exists_sub_query: bool) -> Self
Set if this is an Exists(Not Exists) SubQuery
Trait Implementations§
§type Node = LogicalPlan
type Node = LogicalPlan
source§fn f_down(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>
fn f_down(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>
source§fn f_up(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>
fn f_up(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>
Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more