(&self, plan: LogicalPlan, options: &ConfigOptions)
| 85 | } |
| 86 | |
| 87 | fn analyze(&self, plan: LogicalPlan, options: &ConfigOptions) -> Result<LogicalPlan> { |
| 88 | plan.transform_up_with_subqueries(|plan| self.rewrite_plan(plan, options)) |
| 89 | .map(|res| res.data) |
| 90 | } |
| 91 | } |
nothing calls this directly
no test coverage detected