(
&mut self,
plan: &'n LogicalPlan,
)
| 63 | type Node = LogicalPlan; |
| 64 | |
| 65 | fn f_down( |
| 66 | &mut self, |
| 67 | plan: &'n LogicalPlan, |
| 68 | ) -> datafusion_common::Result<TreeNodeRecursion> { |
| 69 | if self.indent > 0 { |
| 70 | writeln!(self.f)?; |
| 71 | } |
| 72 | write!(self.f, "{:indent$}", "", indent = self.indent * 2)?; |
| 73 | write!(self.f, "{}", plan.display())?; |
| 74 | if self.with_schema { |
| 75 | write!(self.f, " {}", display_schema(plan.schema().as_arrow()))?; |
| 76 | } |
| 77 | |
| 78 | self.indent += 1; |
| 79 | Ok(TreeNodeRecursion::Continue) |
| 80 | } |
| 81 | |
| 82 | fn f_up( |
| 83 | &mut self, |
nothing calls this directly
no test coverage detected