Skip to main content

PhysicalPlanningContext

Struct PhysicalPlanningContext 

Source
pub struct PhysicalPlanningContext { /* private fields */ }
Expand description

Context used while converting a logical plan subtree into a physical plan.

Unlike ExecutionProps, which applies to the overall planning and execution of a query, this context can differ between recursively planned subtrees. It currently carries:

The physical planner builds this context from the set of uncorrelated scalar subqueries it has scheduled for a subtree. It is then passed explicitly through create_physical_expr so that function can find the slot index for each Subquery. While planning the body of a lambda, create_physical_expr extends the context with the lambda’s parameters via Self::with_qualified_lambda_variables.

An empty PhysicalPlanningContext (the Default) is what every non-physical-planner caller passes; if such a caller encounters a scalar subquery, create_physical_expr returns a not_impl_err.

Implementations§

Source§

impl PhysicalPlanningContext

Source

pub fn new( indexes: HashMap<Subquery, SubqueryIndex>, results: ScalarSubqueryResults, ) -> Self

Create a PhysicalPlanningContext from an index map and a shared results container. The index map must use the same indices as slots in results.

Source

pub fn index_of(&self, subquery: &Subquery) -> Option<SubqueryIndex>

Returns the slot index assigned to subquery, if any.

Source

pub fn results(&self) -> &ScalarSubqueryResults

Returns the shared results container.

Source

pub fn with_qualified_lambda_variables( self, qualifier: &TableReference, variables: &[String], ) -> Self

Adds a mapping for each variable to the given qualifier. Existing variables with conflicting names are shadowed.

Source

pub fn lambda_variable_qualifier(&self, name: &str) -> Option<&TableReference>

Returns the qualifier of the lambda variable name, if it is in scope.

Trait Implementations§

Source§

impl Clone for PhysicalPlanningContext

Source§

fn clone(&self) -> PhysicalPlanningContext

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PhysicalPlanningContext

Source§

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

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

impl Default for PhysicalPlanningContext

Source§

fn default() -> PhysicalPlanningContext

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

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

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>,

Source§

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.