This is an automated email from the ASF dual-hosted git repository.
amoghj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new 38e1c33191 Nessie: Update NessieCatalog JavaDoc about namespaces
(#8495)
38e1c33191 is described below
commit 38e1c331914373dd331ffe782d1bc68fb0a5ea6f
Author: Ajantha Bhat <[email protected]>
AuthorDate: Wed Sep 6 21:27:57 2023 +0530
Nessie: Update NessieCatalog JavaDoc about namespaces (#8495)
Namespaces are not implicit anymore after Nessie 0.52.3
https://projectnessie.org/blog/namespace-enforcement/
---
.../src/main/java/org/apache/iceberg/nessie/NessieCatalog.java | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java
b/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java
index 0c91cfb1db..ad5af4c3b4 100644
--- a/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java
+++ b/nessie/src/main/java/org/apache/iceberg/nessie/NessieCatalog.java
@@ -51,14 +51,7 @@ import org.projectnessie.model.TableReference;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
-/**
- * Nessie implementation of Iceberg Catalog.
- *
- * <p>A note on namespaces: Nessie namespaces are implicit and do not need to
be explicitly created
- * or deleted. The create and delete namespace methods are no-ops for the
NessieCatalog. One can
- * still list namespaces that have objects stored in them to assist with
namespace-centric catalog
- * exploration.
- */
+/** Nessie implementation of Iceberg Catalog. */
public class NessieCatalog extends BaseMetastoreCatalog
implements AutoCloseable, SupportsNamespaces, Configurable<Object> {