Get the full table schema (file schema + partition columns). This is the complete schema that will be seen by queries, combining both the columns from the files and the partition columns.
(&self)
| 175 | /// This is the complete schema that will be seen by queries, combining |
| 176 | /// both the columns from the files and the partition columns. |
| 177 | pub fn table_schema(&self) -> &SchemaRef { |
| 178 | &self.table_schema |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | impl From<SchemaRef> for TableSchema { |