Sets the left-most set expression schema, returning the previous value
(
&mut self,
schema: Option<DFSchemaRef>,
)
| 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 |
no test coverage detected