pub struct SanityCheckPlan {}
Expand description
The SanityCheckPlan rule rejects the following query plans:
- Invalid plans containing nodes whose order and/or distribution requirements are not satisfied by their children.
- Plans that use pipeline-breaking operators on infinite input(s), it is impossible to execute such queries (they will never generate output nor finish)
Implementations§
Trait Implementations§
Source§impl Debug for SanityCheckPlan
impl Debug for SanityCheckPlan
Source§impl Default for SanityCheckPlan
impl Default for SanityCheckPlan
Source§fn default() -> SanityCheckPlan
fn default() -> SanityCheckPlan
Returns the “default value” for a type. Read more
Source§impl PhysicalOptimizerRule for SanityCheckPlan
impl PhysicalOptimizerRule for SanityCheckPlan
Source§fn optimize(
&self,
plan: Arc<dyn ExecutionPlan>,
config: &ConfigOptions,
) -> Result<Arc<dyn ExecutionPlan>>
fn optimize( &self, plan: Arc<dyn ExecutionPlan>, config: &ConfigOptions, ) -> Result<Arc<dyn ExecutionPlan>>
Rewrite
plan
to an optimized formSource§fn schema_check(&self) -> bool
fn schema_check(&self) -> bool
A flag to indicate whether the physical planner should valid the rule will not
change the schema of the plan after the rewriting.
Some of the optimization rules might change the nullable properties of the schema
and should disable the schema check.
Auto Trait Implementations§
impl Freeze for SanityCheckPlan
impl RefUnwindSafe for SanityCheckPlan
impl Send for SanityCheckPlan
impl Sync for SanityCheckPlan
impl Unpin for SanityCheckPlan
impl UnwindSafe for SanityCheckPlan
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
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