We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b7489a commit 60cfa0eCopy full SHA for 60cfa0e
1 file changed
tests/integration/test_reads.py
@@ -180,8 +180,8 @@ def test_iceberg_property_deletion_not_restored_from_old_hms_state(session_catal
180
When a property is removed through Iceberg, it should be deleted from HMS and not
181
come back from the old HMS state during merge operations.
182
"""
183
- table = create_table(catalog)
184
- hive_client: _HiveClient = _HiveClient(catalog.properties["uri"])
+ table = create_table(session_catalog_hive)
+ hive_client: _HiveClient = _HiveClient(session_catalog_hive.properties["uri"])
185
186
# Set multiple Iceberg properties
187
table.transaction().set_properties({"prop_to_keep": "keep_value", "prop_to_delete": "delete_me"}).commit_transaction()
0 commit comments