()
| 1376 | // ----------------------------------------------------------------------- |
| 1377 | |
| 1378 | fn test_pk_schema() -> TableSchema { |
| 1379 | let schema = Schema::builder() |
| 1380 | .column("id", DataType::Int(IntType::new())) |
| 1381 | .column("value", DataType::Int(IntType::new())) |
| 1382 | .primary_key(["id"]) |
| 1383 | .option("bucket", "1") |
| 1384 | .build() |
| 1385 | .unwrap(); |
| 1386 | TableSchema::new(0, &schema) |
| 1387 | } |
| 1388 | |
| 1389 | fn test_pk_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1390 | Table::new( |
no test coverage detected