Module datafusion_physical_plan::tree_node
source · Expand description
This module provides common traits for visiting or rewriting tree nodes easily.
Structs§
- A node object beneficial for writing optimizer rules, encapsulating an
ExecutionPlan
node with a payload. Since there are two ways to access child plans—directly from the plan and through child nodes—it’s recommended to perform mutable operations viaSelf::update_plan_from_children
.