(
&mut self,
mut schema: Option<DFSchemaRef>,
)
| 346 | } |
| 347 | |
| 348 | pub fn set_table_schema( |
| 349 | &mut self, |
| 350 | mut schema: Option<DFSchemaRef>, |
| 351 | ) -> Option<DFSchemaRef> { |
| 352 | std::mem::swap(&mut self.create_table_schema, &mut schema); |
| 353 | schema |
| 354 | } |
| 355 | |
| 356 | pub fn table_schema(&self) -> Option<DFSchemaRef> { |
| 357 | self.create_table_schema.clone() |
no outgoing calls
no test coverage detected