Set the [`ExprPlanner`]s used to customize the behavior of the SQL planner.
(
mut self,
expr_planners: Vec<Arc<dyn ExprPlanner>>,
)
| 1273 | |
| 1274 | /// Set the [`ExprPlanner`]s used to customize the behavior of the SQL planner. |
| 1275 | pub fn with_expr_planners( |
| 1276 | mut self, |
| 1277 | expr_planners: Vec<Arc<dyn ExprPlanner>>, |
| 1278 | ) -> Self { |
| 1279 | self.expr_planners = Some(expr_planners); |
| 1280 | self |
| 1281 | } |
| 1282 | |
| 1283 | #[cfg(feature = "sql")] |
| 1284 | /// Sets the [`RelationPlanner`]s used to customize SQL relation planning. |
no outgoing calls
no test coverage detected