Returns the column names on the schema
(schema: &Schema)
| 213 | |
| 214 | /// Returns the column names on the schema |
| 215 | pub fn columns(schema: &Schema) -> Vec<String> { |
| 216 | schema.fields().iter().map(|f| f.name().clone()).collect() |
| 217 | } |
| 218 | |
| 219 | /// Return a new table provider that has a single Int32 column with |
| 220 | /// values between `seq_start` and `seq_end` |