(
&self,
relation: &mut MirRelationExpr,
_: &mut TransformCtx,
)
| 83 | fields(path.segment = "demand") |
| 84 | )] |
| 85 | fn actually_perform_transform( |
| 86 | &self, |
| 87 | relation: &mut MirRelationExpr, |
| 88 | _: &mut TransformCtx, |
| 89 | ) -> Result<(), crate::TransformError> { |
| 90 | let result = self.action( |
| 91 | relation, |
| 92 | (0..relation.arity()).collect(), |
| 93 | &mut BTreeMap::new(), |
| 94 | ); |
| 95 | mz_repr::explain::trace_plan(&*relation); |
| 96 | result |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | impl Demand { |
nothing calls this directly
no test coverage detected