Enum datafusion::physical_plan::tree_node::VisitRecursion
source · pub enum VisitRecursion {
Continue,
Stop,
}
Expand description
Controls how the visitor recursion should proceed.
Variants§
Continue
Attempt to visit all the children, recursively.
Stop
Do not visit the children of this tree node, though the walk of parents of this tree node will not be affected