pub struct StatementPlanningContext<'a> {
pub analysis: StatementAnalysisContext<'a>,
pub aggregates: &'a dyn AggregateClassifier,
pub optimization: &'a dyn StatementOptimizationContexts,
pub constant_evaluator: ConstantEvaluator,
}Fields§
§analysis: StatementAnalysisContext<'a>§aggregates: &'a dyn AggregateClassifier§optimization: &'a dyn StatementOptimizationContexts§constant_evaluator: ConstantEvaluatorTrait Implementations§
Source§impl ExecutablePlanOptimizer for StatementPlanningContext<'_>
impl ExecutablePlanOptimizer for StatementPlanningContext<'_>
fn plan_for_execution( &self, plan: UnifiedPlan, params: &[SQLParam], ) -> Result<UnifiedPlan, SQLError>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for StatementPlanningContext<'a>
impl<'a> !Send for StatementPlanningContext<'a>
impl<'a> !Sync for StatementPlanningContext<'a>
impl<'a> !UnwindSafe for StatementPlanningContext<'a>
impl<'a> Freeze for StatementPlanningContext<'a>
impl<'a> Unpin for StatementPlanningContext<'a>
impl<'a> UnsafeUnpin for StatementPlanningContext<'a>
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
Mutably borrows from an owned value. Read more
impl<T> ErasedDestructor for Twhere
T: 'static,
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> ⓘ
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 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> ⓘ
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