Skip to content

Commit e904e3e

Browse files
committed
change null or invalid only
1 parent 81eb57d commit e904e3e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • parquet-column/src/main/java/org/apache/parquet/column/statistics/geometry

parquet-column/src/main/java/org/apache/parquet/column/statistics/geometry/BoundingBox.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public void merge(BoundingBox other) {
155155
}
156156

157157
// If other is null or invalid, mark this as invalid
158-
if (other == null || other.isEmpty() || !other.valid) {
158+
if (other == null || !other.valid) {
159159
valid = false;
160160
resetBBox();
161161
return;

0 commit comments

Comments
 (0)