We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 778dcb5 commit 75c1735Copy full SHA for 75c1735
paimon-python/pypaimon/read/scanner/file_scanner.py
@@ -70,12 +70,12 @@ def _filter_manifest_files_by_row_ranges(
70
71
for expected_range in row_ranges:
72
# Check if ranges intersect
73
- intersection = Range.intersect(
+ intersect = Range.intersect(
74
manifest_row_range.from_,
75
manifest_row_range.to,
76
expected_range.from_,
77
expected_range.to)
78
- if intersection is not None:
+ if intersect:
79
should_keep = True
80
break
81
0 commit comments