chinmay-bhat commented on code in PR #750: URL: https://github.com/apache/iceberg-python/pull/750#discussion_r1622308580
########## tests/table/test_init.py: ########## @@ -676,6 +676,15 @@ def test_update_metadata_set_snapshot_ref(table_v2: Table) -> None: ) +@pytest.mark.integration +def test_cherrypick_snapshot(table_v2: Table): + cherrypick_operation = table_v2.transaction().cherrypick_snapshot(snapshot_id=3051729675574597004) + cherrypick_operation.cherrypick() + cherrypick_operation.commit() Review Comment: resolved. Ran test as integration test locally after pulling and merging required changes that exist in other PRs. -- 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