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

Method rename_table

crates/integrations/datafusion/src/sql_context.rs:2422–2434  ·  view source on GitHub ↗
(
            &self,
            from: &Identifier,
            to: &Identifier,
            ignore_if_not_exists: bool,
        )

Source from the content-addressed store, hash-verified

2420 Ok(())
2421 }
2422 async fn rename_table(
2423 &self,
2424 from: &Identifier,
2425 to: &Identifier,
2426 ignore_if_not_exists: bool,
2427 ) -> paimon::Result<()> {
2428 self.calls.lock().unwrap().push(CatalogCall::RenameTable {
2429 from: from.clone(),
2430 to: to.clone(),
2431 ignore_if_not_exists,
2432 });
2433 Ok(())
2434 }
2435 async fn alter_table(
2436 &self,
2437 identifier: &Identifier,

Callers 1

handle_alter_tableMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected