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

Function setup_commit

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

Source from the content-addressed store, hash-verified

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);

Calls 1

test_tableFunction · 0.70