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>,
},
PerPartitionLimit {
count: u64,
},
Project {
columns: Vec<SelectExpression>,
},
}Expand description
Individual execution step
Variants§
SSTableScan
Filter
Fields
§
expression: WhereExpressionSort
Fields
§
order_by: OrderByClauseAggregate
Fields
§
plan: AggregationPlanLimit
PerPartitionLimit
Cap rows emitted per partition key, applied upstream of Limit
(Cassandra PER PARTITION LIMIT, Issue #757).
Project
Fields
§
columns: Vec<SelectExpression>Implementations§
Source§impl ExecutionStep
impl ExecutionStep
Sourcepub fn variant_name(&self) -> &'static str
pub fn variant_name(&self) -> &'static str
Static variant label for diagnostics. Data-safety (issue #1694): this intentionally returns only the variant NAME (a shape), never the step’s contents (predicate values, filter expressions, literals), so it is safe to log at any level.
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