(&self, f: &mut std::fmt::Formatter<'_>)
| 255 | |
| 256 | impl Display for CustomStatement { |
| 257 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 258 | match self { |
| 259 | Self::DFStatement(s) => write!(f, "{s}"), |
| 260 | Self::CreateExternalCatalog(s) => write!(f, "{s}"), |
| 261 | } |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | impl Display for CreateExternalCatalog { |