(
&self,
relation: &mut MirRelationExpr,
ctx: &mut TransformCtx,
)
| 74 | fields(path.segment = "normalize_lets") |
| 75 | )] |
| 76 | fn actually_perform_transform( |
| 77 | &self, |
| 78 | relation: &mut MirRelationExpr, |
| 79 | ctx: &mut TransformCtx, |
| 80 | ) -> Result<(), crate::TransformError> { |
| 81 | let result = self.action(relation, ctx.features); |
| 82 | mz_repr::explain::trace_plan(&*relation); |
| 83 | result |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | impl NormalizeLets { |
nothing calls this directly
no test coverage detected