pub struct PhysicalPlanRunner<'a, D: DataSource> { /* private fields */ }Expand description
Physical plan runner - executes physical query plans.
The runner recursively evaluates plan nodes, executing each operator and combining results according to the plan structure.
Implementations§
Source§impl<'a, D: DataSource> PhysicalPlanRunner<'a, D>
impl<'a, D: DataSource> PhysicalPlanRunner<'a, D>
Sourcepub fn new(data_source: &'a D) -> Self
pub fn new(data_source: &'a D) -> Self
Creates a new physical plan runner with the given data source.
Sourcepub fn execute(&self, plan: &PhysicalPlan) -> ExecutionResult<Relation>
pub fn execute(&self, plan: &PhysicalPlan) -> ExecutionResult<Relation>
Executes a physical plan and returns the result relation.
Auto Trait Implementations§
impl<'a, D> Freeze for PhysicalPlanRunner<'a, D>
impl<'a, D> RefUnwindSafe for PhysicalPlanRunner<'a, D>where
D: RefUnwindSafe,
impl<'a, D> Send for PhysicalPlanRunner<'a, D>where
D: Sync,
impl<'a, D> Sync for PhysicalPlanRunner<'a, D>where
D: Sync,
impl<'a, D> Unpin for PhysicalPlanRunner<'a, D>
impl<'a, D> UnwindSafe for PhysicalPlanRunner<'a, D>where
D: RefUnwindSafe,
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