Schema for the `data/csv/regex.csv` example dataset.
()
| 21 | |
| 22 | /// Schema for the `data/csv/regex.csv` example dataset. |
| 23 | pub fn schema() -> Arc<Schema> { |
| 24 | Arc::new(Schema::new(vec![ |
| 25 | Field::new("values", DataType::Utf8, false), |
| 26 | Field::new("patterns", DataType::Utf8, false), |
| 27 | Field::new("replacement", DataType::Utf8, false), |
| 28 | Field::new("flags", DataType::Utf8, true), |
| 29 | ])) |
| 30 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…