Fokko commented on code in PR #419: URL: https://github.com/apache/iceberg-python/pull/419#discussion_r1489812651
########## mkdocs/docs/api.md: ########## @@ -446,6 +446,20 @@ table = table.transaction().remove_properties("abc").commit_transaction() assert table.properties == {} ``` +## Snapshot properties + +Optionally, Snapshot properties can be set while writing to a table using `append` or `overwrite` API: + +```python +tbl.append(df, snapshot_properties={"abc": "def"}) + +or Review Comment: ```suggestion # or ``` -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org