MCPcopy Create free account
hub / github.com/apache/datafusion / with_query_planner

Method with_query_planner

datafusion/core/src/execution/session_state.rs:1323–1329  ·  view source on GitHub ↗

Set the [`QueryPlanner`]

(
        mut self,
        query_planner: Arc<dyn QueryPlanner + Send + Sync>,
    )

Source from the content-addressed store, hash-verified

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(

Calls

no outgoing calls