(file_io: &FileIO, table_path: &str)
| 1586 | } |
| 1587 | |
| 1588 | fn test_postpone_pk_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1589 | Table::new( |
| 1590 | file_io.clone(), |
| 1591 | Identifier::new("default", "test_postpone_table"), |
| 1592 | table_path.to_string(), |
| 1593 | test_postpone_pk_schema(), |
| 1594 | None, |
| 1595 | ) |
| 1596 | } |
| 1597 | |
| 1598 | fn test_postpone_partitioned_schema() -> TableSchema { |
| 1599 | let schema = Schema::builder() |
no test coverage detected