gszadovszky commented on a change in pull request #921:
URL: https://github.com/apache/parquet-mr/pull/921#discussion_r687018983
##########
File path:
parquet-column/src/main/java/org/apache/parquet/internal/filter2/columnindex/RowRanges.java
##########
@@ -299,6 +300,10 @@ public boolean isOverlapping(long from, long to) {
(r1, r2) -> r1.isBefore(r2) ? -1 : r1.isAfter(r2) ? 1 : 0) >= 0;
}
+ public List<Range> getRanges() {
+ return ranges;
Review comment:
Oh, just realized this is not on master. Usually, we are doing the other
way around. Push to master then backport to other branches. But this way should
be fine as well. We do not have too many PRs ongoing.
--
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]