pub enum PhysicalPlan {
ScanExec {
source: ScanSource,
},
ProjectionExec {
input: Box<PhysicalPlan>,
exprs: Vec<Expr>,
kind: ProjectionKind,
},
FilterExec {
input: Box<PhysicalPlan>,
predicate: Expr,
},
AggregateExec {
input: Box<PhysicalPlan>,
group_by: Vec<Expr>,
aggs: Vec<Expr>,
},
JoinExec {
left: Box<PhysicalPlan>,
right: Box<PhysicalPlan>,
keys: JoinKeys,
how: JoinType,
},
SortExec {
input: Box<PhysicalPlan>,
options: SortOptions,
},
SliceExec {
input: Box<PhysicalPlan>,
offset: usize,
len: usize,
from_end: bool,
},
UniqueExec {
input: Box<PhysicalPlan>,
subset: Option<Vec<String>>,
},
FillNullExec {
input: Box<PhysicalPlan>,
fill: FillNull,
},
DropNullsExec {
input: Box<PhysicalPlan>,
subset: Option<Vec<String>>,
},
NullCountExec {
input: Box<PhysicalPlan>,
},
}Expand description
Physical plan compiler and plan node types.
Physical execution plan produced from a LogicalPlan.
Variants§
ScanExec
Scan operator.
Fields
§
source: ScanSourceProjectionExec
Projection operator.
FilterExec
Filter operator.
AggregateExec
Aggregate operator.
JoinExec
Join operator.
SortExec
Sort operator.
SliceExec
Slice operator (head/tail).
UniqueExec
Unique operator.
FillNullExec
Fill-null operator.
DropNullsExec
Drop-nulls operator.
NullCountExec
Null-count operator.
Fields
§
input: Box<PhysicalPlan>Trait Implementations§
Source§impl Clone for PhysicalPlan
impl Clone for PhysicalPlan
Source§fn clone(&self) -> PhysicalPlan
fn clone(&self) -> PhysicalPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PhysicalPlan
impl !RefUnwindSafe for PhysicalPlan
impl Send for PhysicalPlan
impl Sync for PhysicalPlan
impl Unpin for PhysicalPlan
impl !UnwindSafe for PhysicalPlan
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