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

Method table

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

Get a specific table endpoint path.

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

Source from the content-addressed store, hash-verified

95
96 /// Get a specific table endpoint path.
97 pub fn table(&self, database_name: &str, table_name: &str) -> String {
98 format!(
99 "{}/{}/{}/{}/{}",
100 self.base_path,
101 Self::DATABASES,
102 RESTUtil::encode_string(database_name),
103 Self::TABLES,
104 RESTUtil::encode_string(table_name)
105 )
106 }
107
108 /// Get the table details endpoint path.
109 pub fn table_details(&self, database_name: &str) -> String {

Callers 3

get_tableMethod · 0.45
drop_tableMethod · 0.45

Calls

no outgoing calls

Tested by 1