We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be49384 commit c98b6ebCopy full SHA for c98b6eb
pyiceberg/catalog/rest/__init__.py
@@ -1106,7 +1106,7 @@ def update_namespace_properties(
1106
@retry(**_RETRY_ARGS)
1107
def namespace_exists(self, namespace: str | Identifier) -> bool:
1108
namespace_tuple = self._check_valid_namespace_identifier(namespace)
1109
- namespace = NAMESPACE_SEPARATOR.join(namespace_tuple)
+ namespace = self._encode_namespace_path(namespace_tuple)
1110
1111
# fallback in order to work with older rest catalog implementations
1112
if Capability.V1_NAMESPACE_EXISTS not in self._supported_endpoints:
0 commit comments