This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new bb8381b869 [parquet] remove assertion when creating Range (#7133)
bb8381b869 is described below
commit bb8381b869f2d60cb8b06a5e2ae78523740d8357
Author: LsomeYeah <[email protected]>
AuthorDate: Tue Jan 27 17:55:58 2026 +0800
[parquet] remove assertion when creating Range (#7133)
---
.../java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java | 1 -
1 file changed, 1 deletion(-)
diff --git
a/paimon-format/src/main/java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java
b/paimon-format/src/main/java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java
index 2e4d4ca867..41f551d474 100644
---
a/paimon-format/src/main/java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java
+++
b/paimon-format/src/main/java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java
@@ -74,7 +74,6 @@ public class RowRanges {
// Creates a range of [from, to] (from and to are inclusive; empty
ranges are not valid)
Range(long from, long to) {
- assert from <= to;
this.from = from;
this.to = to;
}