(&mut self, relation: &ObjectName)
| 80 | type Break = DataFusionError; |
| 81 | |
| 82 | fn pre_visit_relation(&mut self, relation: &ObjectName) -> ControlFlow<Self::Break> { |
| 83 | self.insert_relation(relation) |
| 84 | } |
| 85 | |
| 86 | fn pre_visit_query(&mut self, q: &Query) -> ControlFlow<Self::Break> { |
| 87 | if let Some(with) = &q.with { |
nothing calls this directly
no test coverage detected