Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-major committed Sep 10, 2024
1 parent 11660c2 commit b462495
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyiceberg/catalog/glue.py
Original file line number Diff line number Diff line change
Expand Up @@ -780,5 +780,6 @@ def list_views(self, namespace: Union[str, Identifier]) -> List[Identifier]:
def drop_view(self, identifier: Union[str, Identifier]) -> None:
raise NotImplementedError

@staticmethod
def __is_iceberg_table(table: TableTypeDef) -> bool:
return table["Parameters"] is not None and table["Parameters"][TABLE_TYPE].lower() == ICEBERG
return table["Parameters"] is not None and table["Parameters"][TABLE_TYPE].lower() == ICEBERG.lower()

0 comments on commit b462495

Please sign in to comment.