qzyu999 commented on code in PR #3858: URL: https://github.com/apache/iceberg-python/pull/3858#discussion_r3876594920
########## tests/table/test_delete_data_file_on_delete_files.py: ########## @@ -0,0 +1,257 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +"""Regression tests for delete_data_file() on _DeleteFiles instances. + +_DeleteFiles is primarily predicate-driven, but it inherits delete_data_file() +from _SnapshotProducer. These tests verify that explicit file references are +honoured correctly in all combinations with predicate-based deletion. +""" + +import pyarrow as pa +import pytest + +from pyiceberg.catalog import Catalog +from pyiceberg.expressions import EqualTo +from pyiceberg.schema import Schema +from pyiceberg.table import Table +from pyiceberg.types import LongType, NestedField + + [email protected]() Review Comment: Hi @rambleraptor, the single-file test now reuses `overwrite_table` directly. Only added one new fixture (`multi_file_table`) for the multi-file cases, which builds on the existing `catalog` + `arrow_table_simple` fixtures rather than defining a custom schema. -- 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]
