From 06f746b36b2bb8bbd76378b8d42ddcb3191e35a2 Mon Sep 17 00:00:00 2001 From: Kevin Liu Date: Fri, 15 Nov 2024 12:03:00 -0500 Subject: [PATCH] use the non-deprecated func (#1326) --- pyiceberg/catalog/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyiceberg/catalog/rest.py b/pyiceberg/catalog/rest.py index 2b48330bf..5664084c7 100644 --- a/pyiceberg/catalog/rest.py +++ b/pyiceberg/catalog/rest.py @@ -899,7 +899,7 @@ def table_exists(self, identifier: Union[str, Identifier]) -> bool: @retry(**_RETRY_ARGS) def drop_view(self, identifier: Union[str]) -> None: - identifier_tuple = self.identifier_to_tuple_without_catalog(identifier) + identifier_tuple = self._identifier_to_tuple_without_catalog(identifier) response = self._session.delete( self.url( Endpoints.drop_view, prefixed=True, **self._split_identifier_for_path(identifier_tuple, IdentifierKind.VIEW)