(file_io: &FileIO, table_path: &str)
| 1178 | } |
| 1179 | |
| 1180 | fn setup_commit(file_io: &FileIO, table_path: &str) -> TableCommit { |
| 1181 | let table = test_table(file_io, table_path); |
| 1182 | TableCommit::new(table, "test-user".to_string()) |
| 1183 | } |
| 1184 | |
| 1185 | fn setup_partitioned_commit(file_io: &FileIO, table_path: &str) -> TableCommit { |
| 1186 | let table = test_partitioned_table(file_io, table_path); |