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

Method table_path

crates/paimon/src/catalog/filesystem.rs:130–135  ·  view source on GitHub ↗

Get the path for a table (warehouse / `database.db` / table).

(&self, identifier: &Identifier)

Source from the content-addressed store, hash-verified

128
129 /// Get the path for a table (warehouse / `database.db` / table).
130 fn table_path(&self, identifier: &Identifier) -> String {
131 make_path(
132 &self.database_path(identifier.database()),
133 identifier.object(),
134 )
135 }
136
137 /// Path to the schema directory under a table path.
138 fn schema_dir_path(&self, table_path: &str) -> String {

Callers 6

table_existsMethod · 0.80
get_tableMethod · 0.80
create_tableMethod · 0.80
drop_tableMethod · 0.80
rename_tableMethod · 0.80
alter_tableMethod · 0.80

Calls 4

make_pathFunction · 0.85
database_pathMethod · 0.80
objectMethod · 0.80
databaseMethod · 0.45

Tested by

no test coverage detected