Struct datafusion_expr::logical_plan::Analyze
source · pub struct Analyze {
pub verbose: bool,
pub input: Arc<LogicalPlan>,
pub schema: DFSchemaRef,
}
Expand description
Runs the actual plan, and then prints the physical plan with with execution metrics.
Fields§
§verbose: bool
Should extra detail be included?
input: Arc<LogicalPlan>
The logical plan that is being EXPLAIN ANALYZE’d
schema: DFSchemaRef
The output schema of the explain (2 columns of text)