pub struct GroupByPhaseInfo {
pub total_rows: usize,
pub num_groups: usize,
pub num_expressions: usize,
pub phase1_cardinality_estimation: Duration,
pub phase2_key_building: Duration,
pub phase2_expression_evaluation: Duration,
pub phase3_dataview_creation: Duration,
pub phase4_aggregation: Duration,
pub phase4_having_evaluation: Duration,
pub groups_filtered_by_having: usize,
pub total_time: Duration,
}
Expand description
Detailed phase information for GROUP BY operations
Fields§
§total_rows: usize
§num_groups: usize
§num_expressions: usize
§phase1_cardinality_estimation: Duration
§phase2_key_building: Duration
§phase2_expression_evaluation: Duration
§phase3_dataview_creation: Duration
§phase4_aggregation: Duration
§phase4_having_evaluation: Duration
§groups_filtered_by_having: usize
§total_time: Duration
Trait Implementations§
Source§impl Clone for GroupByPhaseInfo
impl Clone for GroupByPhaseInfo
Source§fn clone(&self) -> GroupByPhaseInfo
fn clone(&self) -> GroupByPhaseInfo
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 GroupByPhaseInfo
impl RefUnwindSafe for GroupByPhaseInfo
impl Send for GroupByPhaseInfo
impl Sync for GroupByPhaseInfo
impl Unpin for GroupByPhaseInfo
impl UnwindSafe for GroupByPhaseInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more