insert_below

Function insert_below 

Source
fn insert_below(
    plan: LogicalPlan,
    new_child: LogicalPlan,
) -> Result<Transformed<LogicalPlan>>
Expand description

Replace the existing child of the single input node with new_child.

Starting:

plan
  child

Ending:

plan
  new_child