(file_io: &FileIO, table_path: &str)
| 745 | } |
| 746 | |
| 747 | fn test_partitioned_table(file_io: &FileIO, table_path: &str) -> Table { |
| 748 | Table::new( |
| 749 | file_io.clone(), |
| 750 | Identifier::new("default", "test_table"), |
| 751 | table_path.to_string(), |
| 752 | test_partitioned_schema(), |
| 753 | None, |
| 754 | ) |
| 755 | } |
| 756 | |
| 757 | fn test_blob_table_schema() -> TableSchema { |
| 758 | let schema = Schema::builder() |
no test coverage detected