Skip to content

Commit

Permalink
Core: Replace the duplicated ALL_DATA_FILES with ALL_DELETE_FILES (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
hsiang-c authored Aug 1, 2024
1 parent 806da5c commit 99b8e88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class TestMetadataTableFilters extends TestBase {
private static final Set<MetadataTableType> AGG_FILE_TABLES =
Sets.newHashSet(
MetadataTableType.ALL_DATA_FILES,
MetadataTableType.ALL_DATA_FILES,
MetadataTableType.ALL_DELETE_FILES,
MetadataTableType.ALL_FILES,
MetadataTableType.ALL_ENTRIES);

Expand Down Expand Up @@ -132,9 +132,9 @@ private int expectedScanTaskCount(int partitions) {
}
case DATA_FILES:
case DELETE_FILES:
case ALL_DELETE_FILES:
return partitions;
case ALL_DATA_FILES:
case ALL_DELETE_FILES:
return partitions * 2; // ScanTask for Data Manifest in DELETED and ADDED states
case ALL_FILES:
case ALL_ENTRIES:
Expand Down

0 comments on commit 99b8e88

Please sign in to comment.