Sets the outer query schema, returning the existing one, if any
(&mut self, schema: DFSchemaRef)
| 332 | /// Sets the outer query schema, returning the existing one, if |
| 333 | /// any |
| 334 | pub fn append_outer_query_schema(&mut self, schema: DFSchemaRef) { |
| 335 | self.outer_queries_schemas_stack.push(schema); |
| 336 | } |
| 337 | |
| 338 | /// The schema of the adjacent outer relation |
| 339 | pub fn latest_outer_query_schema(&self) -> Option<&DFSchemaRef> { |
no test coverage detected