(
&self,
plan: Arc<dyn ExecutionPlan>,
_config: &ConfigOptions,
)
| 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 | } |
no outgoing calls
no test coverage detected