Struct datafusion::physical_plan::analyze::AnalyzeExec
source · pub struct AnalyzeExec { /* private fields */ }
Expand description
EXPLAIN ANALYZE
execution plan operator. This operator runs its input,
discards the results, and then prints out an annotated plan with metrics
Implementations
sourceimpl AnalyzeExec
impl AnalyzeExec
sourcepub fn new(
verbose: bool,
input: Arc<dyn ExecutionPlan>,
schema: SchemaRef
) -> Self
pub fn new(
verbose: bool,
input: Arc<dyn ExecutionPlan>,
schema: SchemaRef
) -> Self
Create a new AnalyzeExec
Trait Implementations
sourceimpl Clone for AnalyzeExec
impl Clone for AnalyzeExec
sourcefn clone(&self) -> AnalyzeExec
fn clone(&self) -> AnalyzeExec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for AnalyzeExec
impl Debug for AnalyzeExec
sourceimpl ExecutionPlan for AnalyzeExec
impl ExecutionPlan for AnalyzeExec
sourcefn required_child_distribution(&self) -> Distribution
fn required_child_distribution(&self) -> Distribution
Specifies we want the input as a single stream
sourcefn output_partitioning(&self) -> Partitioning
fn output_partitioning(&self) -> Partitioning
Get the output partitioning of this plan
sourcefn children(&self) -> Vec<Arc<dyn ExecutionPlan>>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
A: Allocator,
fn children(&self) -> Vec<Arc<dyn ExecutionPlan>>ⓘNotable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
A: Allocator,
A: Allocator,
Get a list of child execution plans that provide the input for this plan. The returned list
will be empty for leaf nodes, will contain a single value for unary nodes, or two
values for binary nodes (such as joins). Read more
sourcefn output_ordering(&self) -> Option<&[PhysicalSortExpr]>
fn output_ordering(&self) -> Option<&[PhysicalSortExpr]>
If the output of this operator is sorted, returns
Some(keys)
with the description of how it was sorted. Read moresourcefn relies_on_input_order(&self) -> bool
fn relies_on_input_order(&self) -> bool
Returns
true
if this operator relies on its inputs being
produced in a certain order (for example that they are sorted
a particular way) for correctness. Read moresourcefn with_new_children(
self: Arc<Self>,
children: Vec<Arc<dyn ExecutionPlan>>
) -> Result<Arc<dyn ExecutionPlan>>
fn with_new_children(
self: Arc<Self>,
children: Vec<Arc<dyn ExecutionPlan>>
) -> Result<Arc<dyn ExecutionPlan>>
Returns a new plan where all children were replaced by new plans.
sourcefn execute(
&self,
partition: usize,
context: Arc<TaskContext>
) -> Result<SendableRecordBatchStream>
fn execute(
&self,
partition: usize,
context: Arc<TaskContext>
) -> Result<SendableRecordBatchStream>
creates an iterator
sourcefn fmt_as(&self, t: DisplayFormatType, f: &mut Formatter<'_>) -> Result
fn fmt_as(&self, t: DisplayFormatType, f: &mut Formatter<'_>) -> Result
sourcefn statistics(&self) -> Statistics
fn statistics(&self) -> Statistics
Returns the global output statistics for this
ExecutionPlan
node.sourcefn maintains_input_order(&self) -> bool
fn maintains_input_order(&self) -> bool
Returns
false
if this operator’s implementation may reorder
rows within or between partitions. Read moresourcefn benefits_from_input_partitioning(&self) -> bool
fn benefits_from_input_partitioning(&self) -> bool
Returns
true
if this operator would benefit from
partitioning its input (and thus from more parallelism). For
operators that do very little work the overhead of extra
parallelism may outweigh any benefits Read moresourcefn metrics(&self) -> Option<MetricsSet>
fn metrics(&self) -> Option<MetricsSet>
Auto Trait Implementations
impl !RefUnwindSafe for AnalyzeExec
impl Send for AnalyzeExec
impl Sync for AnalyzeExec
impl Unpin for AnalyzeExec
impl !UnwindSafe for AnalyzeExec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more