The `.tbl` file contains a trailing column
(table: &str)
| 37 | |
| 38 | /// The `.tbl` file contains a trailing column |
| 39 | pub fn get_tbl_tpch_table_schema(table: &str) -> Schema { |
| 40 | let mut schema = SchemaBuilder::from(get_tpch_table_schema(table).fields); |
| 41 | schema.push(Field::new("__placeholder", DataType::Utf8, false)); |
| 42 | schema.finish() |
| 43 | } |
| 44 | |
| 45 | /// Get the schema for the benchmarks derived from TPC-H |
| 46 | pub fn get_tpch_table_schema(table: &str) -> Schema { |
no test coverage detected
searching dependent graphs…