arminnajafi commented on code in PR #6646:
URL: https://github.com/apache/iceberg/pull/6646#discussion_r1106529773
##########
python/pyiceberg/catalog/glue.py:
##########
@@ -461,8 +390,10 @@ def list_namespaces(self, namespace: Union[str,
Identifier] = ()) -> List[Identi
List[Identifier]: a List of namespace identifiers
"""
# Glue does not support hierarchical namespace, therefore return an
empty list
- if namespace:
+ tuple_identifier = Catalog.identifier_to_tuple(namespace)
+ if len(tuple_identifier) > 1:
Review Comment:
Good catch. Changed it to what it was before:
```
if namespace:
return []
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]