Declare that the input `expr` is optimized, without actually running it through an optimizer. This can be useful to mark as optimized literal `MirRelationExpr`s that are obviously optimal, without invoking the whole machinery of the optimizer.
(expr: MirRelationExpr)
| 63 | /// `MirRelationExpr`s that are obviously optimal, without invoking the whole |
| 64 | /// machinery of the optimizer. |
| 65 | pub fn declare_optimized(expr: MirRelationExpr) -> OptimizedMirRelationExpr { |
| 66 | OptimizedMirRelationExpr(expr) |
| 67 | } |
| 68 | |
| 69 | /// Get mutable access to the inner [MirRelationExpr] |
| 70 | /// |
nothing calls this directly
no test coverage detected