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

Method set_set_expr_left_schema

datafusion/sql/src/planner.rs:427–432  ·  view source on GitHub ↗

Sets the left-most set expression schema, returning the previous value

(
        &mut self,
        schema: Option<DFSchemaRef>,
    )

Source from the content-addressed store, hash-verified

425
426 /// Sets the left-most set expression schema, returning the previous value
427 pub(super) fn set_set_expr_left_schema(
428 &mut self,
429 schema: Option<DFSchemaRef>,
430 ) -> Option<DFSchemaRef> {
431 std::mem::replace(&mut self.set_expr_left_schema, schema)
432 }
433}
434
435/// SQL query planner and binder

Callers 2

select_to_planMethod · 0.80
set_expr_to_planMethod · 0.80

Calls 1

replaceFunction · 0.85

Tested by

no test coverage detected