pub struct IndexJoinPass<'a> { /* private fields */ }Expand description
Pass that converts eligible joins to index nested loop joins.
Implementations§
Source§impl<'a> IndexJoinPass<'a>
impl<'a> IndexJoinPass<'a>
Sourcepub fn new(ctx: &'a ExecutionContext) -> Self
pub fn new(ctx: &'a ExecutionContext) -> Self
Creates a new IndexJoinPass with the given execution context.
Sourcepub fn optimize(&self, plan: PhysicalPlan) -> PhysicalPlan
pub fn optimize(&self, plan: PhysicalPlan) -> PhysicalPlan
Optimizes the physical plan by converting eligible joins to index joins.
Auto Trait Implementations§
impl<'a> Freeze for IndexJoinPass<'a>
impl<'a> RefUnwindSafe for IndexJoinPass<'a>
impl<'a> Send for IndexJoinPass<'a>
impl<'a> Sync for IndexJoinPass<'a>
impl<'a> Unpin for IndexJoinPass<'a>
impl<'a> UnwindSafe for IndexJoinPass<'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