(file_io: &FileIO, table_path: &str)
| 1198 | } |
| 1199 | |
| 1200 | async fn setup_dirs(file_io: &FileIO, table_path: &str) { |
| 1201 | file_io |
| 1202 | .mkdirs(&format!("{table_path}/snapshot/")) |
| 1203 | .await |
| 1204 | .unwrap(); |
| 1205 | file_io |
| 1206 | .mkdirs(&format!("{table_path}/manifest/")) |
| 1207 | .await |
| 1208 | .unwrap(); |
| 1209 | } |
| 1210 | |
| 1211 | #[tokio::test] |
| 1212 | async fn test_append_commit() { |