pub trait PlanCheckApplyEliminationExt {
// Required method
fn check_apply_elimination(&self) -> Result<(), RwError>;
}Required Methods§
Sourcefn check_apply_elimination(&self) -> Result<(), RwError>
fn check_apply_elimination(&self) -> Result<(), RwError>
Checks if all LogicalApply nodes in the plan have been eliminated, that is,
subqueries are successfully unnested.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".