(file_io: &FileIO, table_path: &str)
| 735 | } |
| 736 | |
| 737 | fn test_table(file_io: &FileIO, table_path: &str) -> Table { |
| 738 | Table::new( |
| 739 | file_io.clone(), |
| 740 | Identifier::new("default", "test_table"), |
| 741 | table_path.to_string(), |
| 742 | test_schema(), |
| 743 | None, |
| 744 | ) |
| 745 | } |
| 746 | |
| 747 | fn test_partitioned_table(file_io: &FileIO, table_path: &str) -> Table { |
| 748 | Table::new( |
no test coverage detected