pub enum ExecutionStep {
SSTableScan {
table: TableId,
predicates: Vec<SSTablePredicate>,
projection: Vec<String>,
},
Filter {
expression: WhereExpression,
},
Sort {
order_by: OrderByClause,
},
Aggregate {
plan: AggregationPlan,
},
Limit {
count: u64,
offset: Option<u64>,
},
Project {
columns: Vec<SelectExpression>,
},
}Expand description
Individual execution step
Variants§
SSTableScan
Filter
Fields
§
expression: WhereExpressionSort
Fields
§
order_by: OrderByClauseAggregate
Fields
§
plan: AggregationPlanLimit
Project
Fields
§
columns: Vec<SelectExpression>Trait Implementations§
Source§impl Clone for ExecutionStep
impl Clone for ExecutionStep
Source§fn clone(&self) -> ExecutionStep
fn clone(&self) -> ExecutionStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExecutionStep
impl RefUnwindSafe for ExecutionStep
impl Send for ExecutionStep
impl Sync for ExecutionStep
impl Unpin for ExecutionStep
impl UnsafeUnpin for ExecutionStep
impl UnwindSafe for ExecutionStep
Blanket Implementations§
impl<T> Allocation for T
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