(file_io: &FileIO, table_path: &str)
| 1139 | } |
| 1140 | |
| 1141 | fn test_partitioned_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1142 | Table::new( |
| 1143 | file_io.clone(), |
| 1144 | Identifier::new("default", "test_table"), |
| 1145 | table_path.to_string(), |
| 1146 | test_partitioned_schema(), |
| 1147 | None, |
| 1148 | ) |
| 1149 | } |
| 1150 | |
| 1151 | fn test_data_file(name: &str, row_count: i64) -> DataFileMeta { |
| 1152 | DataFileMeta { |
no test coverage detected