Expand description
Planner-to-physical bridge + plan executor.
PlanExecutor is the planner-side entry point for executing an
OperatorTree through a runtime driver. It records root timing
statistics and produces an EXPLAIN-style tree string.
Structs§
- Execution
Stats - Statistics collected during plan execution.
- Plan
Executor - Executor wrapper for
OperatorTree.
Enums§
- Operator
Output - Materialised value produced by a physical
OperatorTreenode.
Traits§
- Operator
Tree Driver - Driver that knows how to execute an
OperatorTreenode. The engine implements this trait (it owns the per-operator dispatch, child execution, and the runtime context); the planner-sidePlanExecutoronly wraps root timing and stats collection.
Functions§
- operator_
name - Stable human-readable name for an
OperatorTreevariant.