MCPcopy Create free account
hub / github.com/apache/datafusion / f_up

Method f_up

datafusion/expr/src/logical_plan/plan.rs:4676–4688  ·  view source on GitHub ↗
(&mut self, plan: &'n LogicalPlan)

Source from the content-addressed store, hash-verified

4674 }
4675
4676 fn f_up(&mut self, plan: &'n LogicalPlan) -> Result<TreeNodeRecursion> {
4677 let s = match plan {
4678 LogicalPlan::Projection { .. } => "post_visit Projection",
4679 LogicalPlan::Filter { .. } => "post_visit Filter",
4680 LogicalPlan::TableScan { .. } => "post_visit TableScan",
4681 _ => {
4682 return not_impl_err!("unknown plan type");
4683 }
4684 };
4685
4686 self.strings.push(s.into());
4687 Ok(TreeNodeRecursion::Continue)
4688 }
4689 }
4690
4691 #[test]

Callers 1

visit_with_subqueriesMethod · 0.45

Calls 3

decMethod · 0.80
pushMethod · 0.45
intoMethod · 0.45

Tested by

no test coverage detected