(&self, f: &mut Formatter)
| 1690 | struct Wrapper<'a>(&'a LogicalPlan); |
| 1691 | impl Display for Wrapper<'_> { |
| 1692 | fn fmt(&self, f: &mut Formatter) -> fmt::Result { |
| 1693 | let with_schema = false; |
| 1694 | let mut visitor = IndentVisitor::new(f, with_schema); |
| 1695 | match self.0.visit_with_subqueries(&mut visitor) { |
| 1696 | Ok(_) => Ok(()), |
| 1697 | Err(_) => Err(fmt::Error), |
| 1698 | } |
| 1699 | } |
| 1700 | } |
| 1701 | Wrapper(self) |
| 1702 | } |
nothing calls this directly
no test coverage detected