rambleraptor commented on code in PR #2942:
URL: https://github.com/apache/iceberg-python/pull/2942#discussion_r2734191536


##########
mkdocs/docs/api.md:
##########
@@ -80,6 +80,15 @@ Or, list existing namespaces:
 ns = catalog.list_namespaces()
 
 assert ns == [("docs_example",)]
+
+# Load namespace properties
+properties = catalog.load_namespace_properties("docs_example")
+
+# Update namespace properties with additions and removals.
+catalog.update_namespace_properties("docs_example", removals={"remove-meee!"}, 
updates={"owner": "iceberg"})
+
+# Drop a namespace
+# catalog.drop_namespace("docs_example")

Review Comment:
   Oh sorry, I completely misunderstood what you were asking! Removed the 
comment. 



-- 
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]

Reply via email to