Method
rename_table
(
&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, |
Tested by
no test coverage detected