Skip to content

Commit 95b4364

Browse files
kevinjqliusungwy
authored andcommitted
use the non-deprecated func (apache#1326)
1 parent c732bfc commit 95b4364

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyiceberg/catalog/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ def table_exists(self, identifier: Union[str, Identifier]) -> bool:
896896

897897
@retry(**_RETRY_ARGS)
898898
def drop_view(self, identifier: Union[str]) -> None:
899-
identifier_tuple = self.identifier_to_tuple_without_catalog(identifier)
899+
identifier_tuple = self._identifier_to_tuple_without_catalog(identifier)
900900
response = self._session.delete(
901901
self.url(
902902
Endpoints.drop_view, prefixed=True, **self._split_identifier_for_path(identifier_tuple, IdentifierKind.VIEW)

0 commit comments

Comments
 (0)