pub enum PhysicalOp {
NodeScan {
label: Label,
as_: String,
props: Option<Properties>,
},
IndexScan {
label: Label,
as_: String,
index: String,
value: Value,
},
Filter {
pred: Predicate,
input: Box<PhysicalOp>,
},
Expand {
edge: EdgePattern,
to_as: String,
input: Box<PhysicalOp>,
},
NestedLoopJoin {
left: Box<PhysicalOp>,
right: Box<PhysicalOp>,
on: Vec<String>,
},
HashJoin {
left: Box<PhysicalOp>,
right: Box<PhysicalOp>,
on: Vec<String>,
},
Project {
cols: Vec<String>,
input: Box<PhysicalOp>,
},
Group {
keys: Vec<String>,
aggregations: Vec<Aggregation>,
input: Box<PhysicalOp>,
},
Sort {
keys: Vec<SortKey>,
input: Box<PhysicalOp>,
},
Limit {
count: usize,
input: Box<PhysicalOp>,
},
Distinct {
input: Box<PhysicalOp>,
},
}
Expand description
物理演算子
Variants§
NodeScan
ノードスキャン
IndexScan
インデックススキャン
Filter
フィルタ
Expand
エッジ展開
NestedLoopJoin
ネステッドループ結合
HashJoin
ハッシュ結合
Project
射影
Group
グループ化
Sort
ソート
Limit
リミット
Distinct
重複除去
Fields
§
input: Box<PhysicalOp>
Trait Implementations§
Source§impl Clone for PhysicalOp
impl Clone for PhysicalOp
Source§fn clone(&self) -> PhysicalOp
fn clone(&self) -> PhysicalOp
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 PhysicalOp
impl RefUnwindSafe for PhysicalOp
impl Send for PhysicalOp
impl Sync for PhysicalOp
impl Unpin for PhysicalOp
impl UnwindSafe for PhysicalOp
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