Build a single-column schema with one Int64 column.
()
| 33 | |
| 34 | /// Build a single-column schema with one Int64 column. |
| 35 | fn minimal_columnar_schema() -> ColumnarSchema { |
| 36 | ColumnarSchema::new(vec![ColumnDef::required("id", ColumnType::Int64)]).expect("valid schema") |
| 37 | } |
| 38 | |
| 39 | /// Produce a valid sealed columnar segment with one row. |
| 40 | fn write_columnar_segment() -> Vec<u8> { |
no test coverage detected