| 128 | /// See [crate::LogicalPlan::display] for an example |
| 129 | pub fn display(&self) -> impl Display + '_ { |
| 130 | struct Wrapper<'a>(&'a DdlStatement); |
| 131 | impl Display for Wrapper<'_> { |
| 132 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 133 | match self.0 { |
no outgoing calls
no test coverage detected
searching dependent graphs…