Return an error if the [`LogicalPlan`] has any nodes that are incompatible with this [`SQLOptions`].
(&self, plan: &LogicalPlan)
| 2303 | /// Return an error if the [`LogicalPlan`] has any nodes that are |
| 2304 | /// incompatible with this [`SQLOptions`]. |
| 2305 | pub fn verify_plan(&self, plan: &LogicalPlan) -> Result<()> { |
| 2306 | plan.visit_with_subqueries(&mut BadPlanVisitor::new(self))?; |
| 2307 | Ok(()) |
| 2308 | } |
| 2309 | } |
| 2310 | |
| 2311 | struct BadPlanVisitor<'a> { |
no test coverage detected