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

Method with_expr_planners

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

Set the [`ExprPlanner`]s used to customize the behavior of the SQL planner.

(
        mut self,
        expr_planners: Vec<Arc<dyn ExprPlanner>>,
    )

Source from the content-addressed store, hash-verified

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.

Callers 1

plan_count_wildcardFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected