(mut self, expr_planner: Arc<dyn ExprPlanner>)
| 66 | |
| 67 | impl MockSessionState { |
| 68 | pub fn with_expr_planner(mut self, expr_planner: Arc<dyn ExprPlanner>) -> Self { |
| 69 | self.expr_planners.push(expr_planner); |
| 70 | self |
| 71 | } |
| 72 | |
| 73 | pub fn with_type_planner(mut self, type_planner: Arc<dyn TypePlanner>) -> Self { |
| 74 | self.type_planner = Some(type_planner); |
no test coverage detected