We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5527dd9 commit 9fa55e6Copy full SHA for 9fa55e6
1 file changed
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java
@@ -935,7 +935,9 @@ protected boolean trySkipToNextColumn(Cell cell) throws IOException {
935
// We need this check because it may happen that the new scanner that we get
936
// during heap.next() is requiring reseek due of fake KV previously generated for
937
// ROWCOL bloom filter optimization. See HBASE-19863 for more details
938
- if (useRowColBloom && nextCell != null && matcher.compareKeyForNextColumn(nextCell, cell) < 0) {
+ if (
939
+ useRowColBloom && nextCell != null && cell.getTimestamp() == PrivateConstants.OLDEST_TIMESTAMP
940
+ ) {
941
return false;
942
}
943
return true;
0 commit comments