(&self, _: &mut OptimizedMirRelationExpr)
| 144 | pub struct ExprPrepNoop; |
| 145 | impl ExprPrep for ExprPrepNoop { |
| 146 | fn prep_relation_expr(&self, _: &mut OptimizedMirRelationExpr) -> Result<(), OptimizerError> { |
| 147 | Ok(()) |
| 148 | } |
| 149 | fn prep_scalar_expr(&self, _expr: &mut MirScalarExpr) -> Result<(), OptimizerError> { |
| 150 | Ok(()) |
| 151 | } |
no test coverage detected