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>§correlated_subquery_cols_map: HashMap<LogicalPlan, BTreeSet<Column>>

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§

source§

impl PullUpCorrelatedExpr

source

pub fn new() -> Self

source

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

source

pub fn with_in_predicate_opt(self, in_predicate_opt: Option<Expr>) -> Self

Set the in_predicate_opt

source

pub fn with_exists_sub_query(self, exists_sub_query: bool) -> Self

Set if this is an Exists(Not Exists) SubQuery

Trait Implementations§

source§

impl Debug for PullUpCorrelatedExpr

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for PullUpCorrelatedExpr

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl TreeNodeRewriter for PullUpCorrelatedExpr

§

type Node = LogicalPlan

The node type which is rewritable.
source§

fn f_down(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>

Invoked while traversing down the tree before any children are rewritten. Default implementation returns the node as is and continues recursion.
source§

fn f_up(&mut self, plan: LogicalPlan) -> Result<Transformed<LogicalPlan>>

Invoked while traversing up the tree after all children have been rewritten. Default implementation returns the node as is and continues recursion.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.