MCPcopy Create free account
hub / github.com/apache/datafusion / append_outer_query_schema

Method append_outer_query_schema

datafusion/sql/src/planner.rs:334–336  ·  view source on GitHub ↗

Sets the outer query schema, returning the existing one, if any

(&mut self, schema: DFSchemaRef)

Source from the content-addressed store, hash-verified

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> {

Callers 5

parse_exists_subqueryMethod · 0.80
parse_in_subqueryMethod · 0.80
parse_scalar_subqueryMethod · 0.80

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected