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

Method commit_table

crates/paimon/src/api/resource_paths.rs:137–146  ·  view source on GitHub ↗

Get the commit table endpoint path.

(&self, database_name: &str, table_name: &str)

Source from the content-addressed store, hash-verified

135
136 /// Get the commit table endpoint path.
137 pub fn commit_table(&self, database_name: &str, table_name: &str) -> String {
138 format!(
139 "{}/{}/{}/{}/{}/commit",
140 self.base_path,
141 Self::DATABASES,
142 RESTUtil::encode_string(database_name),
143 Self::TABLES,
144 RESTUtil::encode_string(table_name)
145 )
146 }
147
148 /// Get the rollback endpoint path for a table.
149 pub fn rollback(&self, database_name: &str, table_name: &str) -> String {

Callers 1

commit_snapshotMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected