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

Method table_token

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

Get the table token endpoint path.

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

Source from the content-addressed store, hash-verified

118
119 /// Get the table token endpoint path.
120 pub fn table_token(&self, database_name: &str, table_name: &str) -> String {
121 format!(
122 "{}/{}/{}/{}/{}/token",
123 self.base_path,
124 Self::DATABASES,
125 RESTUtil::encode_string(database_name),
126 Self::TABLES,
127 RESTUtil::encode_string(table_name)
128 )
129 }
130
131 /// Get the rename table endpoint path.
132 pub fn rename_table(&self) -> String {

Callers 1

load_table_tokenMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected