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

Method optimize

datafusion/core/src/physical_planner.rs:4687–4693  ·  view source on GitHub ↗
(
            &self,
            plan: Arc<dyn ExecutionPlan>,
            _config: &ConfigOptions,
        )

Source from the content-addressed store, hash-verified

4685 struct OptimizerRuleWithSchemaCheck;
4686 impl PhysicalOptimizerRule for OptimizerRuleWithSchemaCheck {
4687 fn optimize(
4688 &self,
4689 plan: Arc<dyn ExecutionPlan>,
4690 _config: &ConfigOptions,
4691 ) -> Result<Arc<dyn ExecutionPlan>> {
4692 Ok(plan)
4693 }
4694 fn name(&self) -> &str {
4695 "OptimizerRuleWithSchemaCheck"
4696 }

Callers 2

planFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected