(
&self,
f: &mut fmt::Formatter<'_>,
ctx: &mut PlanRenderingContext<'_, MirRelationExpr>,
)
| 329 | |
| 330 | impl MirRelationExpr { |
| 331 | fn fmt_default_syntax( |
| 332 | &self, |
| 333 | f: &mut fmt::Formatter<'_>, |
| 334 | ctx: &mut PlanRenderingContext<'_, MirRelationExpr>, |
| 335 | ) -> fmt::Result { |
| 336 | // TODO(mgree) MIR does not support a different default syntax (yet!) |
| 337 | self.fmt_verbose_syntax(f, ctx) |
| 338 | } |
| 339 | |
| 340 | fn fmt_verbose_syntax( |
| 341 | &self, |
no test coverage detected