Set the [`QueryPlanner`]
(
mut self,
query_planner: Arc<dyn QueryPlanner + Send + Sync>,
)
| 1321 | |
| 1322 | /// Set the [`QueryPlanner`] |
| 1323 | pub fn with_query_planner( |
| 1324 | mut self, |
| 1325 | query_planner: Arc<dyn QueryPlanner + Send + Sync>, |
| 1326 | ) -> Self { |
| 1327 | self.query_planner = Some(query_planner); |
| 1328 | self |
| 1329 | } |
| 1330 | |
| 1331 | /// Set the [`CatalogProviderList`] |
| 1332 | pub fn with_catalog_list( |
no outgoing calls