Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion::physical_plan::PhysicalPlanner - Rust
[go: Go Back, main page]

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

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>>

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...