Trait datafusion::physical_plan::PhysicalPlanner[][src]

pub trait PhysicalPlanner {
    fn create_physical_plan(
        &self,
        logical_plan: &LogicalPlan,
        ctx_state: &ExecutionContextState
    ) -> Result<Arc<dyn ExecutionPlan>>; }

Physical query planner that converts a LogicalPlan to an ExecutionPlan suitable for execution.

Required methods

fn create_physical_plan(
    &self,
    logical_plan: &LogicalPlan,
    ctx_state: &ExecutionContextState
) -> Result<Arc<dyn ExecutionPlan>>
[src]

Create a physical plan from a logical plan

Loading content...

Implementors

impl PhysicalPlanner for DefaultPhysicalPlanner[src]

fn create_physical_plan(
    &self,
    logical_plan: &LogicalPlan,
    ctx_state: &ExecutionContextState
) -> Result<Arc<dyn ExecutionPlan>>
[src]

Create a physical plan from a logical plan

Loading content...