pub struct HighCardinalityJoin {
pub left_rows: Option<i64>,
pub output_rows: Option<i64>,
pub right_rows: Option<i64>,
pub step_index: Option<i32>,
}Expand description
High cardinality join detailed information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§left_rows: Option<i64>Output only. Count of left input rows.
output_rows: Option<i64>Output only. Count of the output rows.
right_rows: Option<i64>Output only. Count of right input rows.
step_index: Option<i32>Output only. The index of the join operator in the ExplainQueryStep lists.
Trait Implementations§
Source§impl Clone for HighCardinalityJoin
impl Clone for HighCardinalityJoin
Source§fn clone(&self) -> HighCardinalityJoin
fn clone(&self) -> HighCardinalityJoin
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 moreSource§impl Debug for HighCardinalityJoin
impl Debug for HighCardinalityJoin
Source§impl Default for HighCardinalityJoin
impl Default for HighCardinalityJoin
Source§fn default() -> HighCardinalityJoin
fn default() -> HighCardinalityJoin
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HighCardinalityJoin
impl<'de> Deserialize<'de> for HighCardinalityJoin
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for HighCardinalityJoin
impl Serialize for HighCardinalityJoin
impl Part for HighCardinalityJoin
Auto Trait Implementations§
impl Freeze for HighCardinalityJoin
impl RefUnwindSafe for HighCardinalityJoin
impl Send for HighCardinalityJoin
impl Sync for HighCardinalityJoin
impl Unpin for HighCardinalityJoin
impl UnwindSafe for HighCardinalityJoin
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