Enum datafusion::exec::PhysicalPlan[][src]

pub enum PhysicalPlan {
    Interactive {
        plan: Rc<LogicalPlan>,
    },
    Write {
        plan: Rc<LogicalPlan>,
        filename: String,
        kind: String,
    },
    Show {
        plan: Rc<LogicalPlan>,
        count: usize,
    },
}

Execution plans are sent to worker nodes for execution

Variants

Run a query and return the results to the client

Fields of Interactive

Execute a logical plan and write the output to a file

Fields of Write

Fields of Show

Trait Implementations

impl Debug for PhysicalPlan
[src]

Formats the value using the given formatter. Read more

impl Clone for PhysicalPlan
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl !Send for PhysicalPlan

impl !Sync for PhysicalPlan