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


##########
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:
   did you mean to have a comment before this drop ns?



##########
mkdocs/docs/api.md:
##########
@@ -165,6 +174,16 @@ with 
catalog.create_table_transaction(identifier="docs_example.bids", schema=sch
         update_spec.add_identity("symbol")
 
     txn.set_properties(test_a="test_aa", test_b="test_b", test_c="test_c")
+

Review Comment:
   still need backticks here:
   
   <img width="1116" height="626" alt="Image" 
src="https://github.com/user-attachments/assets/ebe1beaa-8db3-40e6-9d2b-a40001bf71d3";
 />



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