(file_io: &FileIO, table_path: &str)
| 1129 | } |
| 1130 | |
| 1131 | fn test_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1132 | Table::new( |
| 1133 | file_io.clone(), |
| 1134 | Identifier::new("default", "test_table"), |
| 1135 | table_path.to_string(), |
| 1136 | test_schema(), |
| 1137 | None, |
| 1138 | ) |
| 1139 | } |
| 1140 | |
| 1141 | fn test_partitioned_table(file_io: &FileIO, table_path: &str) -> Table { |
| 1142 | Table::new( |
no test coverage detected