pub enum PlanNode {
TableScan {
source: DataSource,
projections: Vec<Column>,
predicates: Vec<Predicate>,
},
Limit {
count: u64,
input: Box<PlanNode>,
},
Sort {
order_by: OrderBy,
input: Box<PlanNode>,
},
Projection {
columns: Vec<Column>,
input: Box<PlanNode>,
},
}Expand description
Execution plan node types
Variants§
TableScan
Scan a table/data source
Limit
Apply a limit to results
Sort
Sort results
Projection
Project specific columns
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanNode
impl RefUnwindSafe for PlanNode
impl Send for PlanNode
impl Sync for PlanNode
impl Unpin for PlanNode
impl UnwindSafe for PlanNode
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