kevinjqliu commented on code in PR #1607: URL: https://github.com/apache/iceberg-python/pull/1607#discussion_r1951956541
########## tests/catalog/test_sql.py: ########## @@ -1613,3 +1614,50 @@ def test_merge_manifests_local_file_system(catalog: SqlCatalog, arrow_table_with tbl.append(arrow_table_with_null) assert len(tbl.scan().to_arrow()) == 5 * len(arrow_table_with_null) + + +@pytest.mark.parametrize( + "catalog", + [ + lazy_fixture("catalog_memory"), + lazy_fixture("catalog_sqlite"), + lazy_fixture("catalog_sqlite_without_rowcount"), + ], +) +def test_delete_metadata_multiple(catalog: SqlCatalog, table_schema_nested: Schema) -> None: + namespace = Catalog.namespace_from(table_identifier) + catalog.create_namespace(namespace) + table = catalog.create_table(table_identifier, table_schema_nested) Review Comment: ```suggestion namespace = Catalog.namespace_from(random_table_identifier) catalog.create_namespace(namespace) table = catalog.create_table(random_table_identifier, table_schema_nested) ``` -- 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