Return an iterator of the subquery relations' schemas, innermost relation is returned first. This order corresponds to the order of resolution when looking up column references in subqueries, which start from the innermost relation and then look up the outer relations one by one until a match is found or no more outer relation exist. NOTE this is *REVERSED* order of [`Self::outer_queries_schemas
(&self)
| 326 | /// This is useful to resolve the column reference in the subquery by |
| 327 | /// looking up the outer query schemas one by one. |
| 328 | pub fn outer_schemas_iter(&self) -> impl Iterator<Item = &DFSchemaRef> { |
| 329 | self.outer_queries_schemas_stack.iter().rev() |
| 330 | } |
| 331 | |
| 332 | /// Sets the outer query schema, returning the existing one, if |
| 333 | /// any |
no test coverage detected