From 334ee006603c6e3bf41628dd3c72859ed30647b3 Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Sun, 26 Apr 2026 10:58:20 +0900 Subject: [PATCH] Document TableAlreadyExistsError in catalog.rename_table --- pyiceberg/catalog/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyiceberg/catalog/__init__.py b/pyiceberg/catalog/__init__.py index 5797e1f050..b52b9b00fb 100644 --- a/pyiceberg/catalog/__init__.py +++ b/pyiceberg/catalog/__init__.py @@ -544,6 +544,7 @@ def rename_table(self, from_identifier: str | Identifier, to_identifier: str | I Raises: NoSuchTableError: If a table with the name does not exist. + TableAlreadyExistsError: If the target table already exists. """ @abstractmethod