(file_io: &FileIO, table_path: &str)
| 1387 | } |
| 1388 | |
| 1389 | fn test_pk_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1390 | Table::new( |
| 1391 | file_io.clone(), |
| 1392 | Identifier::new("default", "test_pk_table"), |
| 1393 | table_path.to_string(), |
| 1394 | test_pk_schema(), |
| 1395 | None, |
| 1396 | ) |
| 1397 | } |
| 1398 | |
| 1399 | #[tokio::test] |
| 1400 | async fn test_pk_write_and_commit() { |
no test coverage detected