MCPcopy Create free account
hub / github.com/apache/paimon-rust / setup_dirs

Function setup_dirs

crates/paimon/src/table/table_commit.rs:1200–1209  ·  view source on GitHub ↗
(file_io: &FileIO, table_path: &str)

Source from the content-addressed store, hash-verified

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() {

Calls 1

mkdirsMethod · 0.80