We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e5a55 commit 4c1fd0dCopy full SHA for 4c1fd0d
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java
@@ -913,7 +913,9 @@ protected boolean trySkipToNextColumn(Cell cell) throws IOException {
913
// We need this check because it may happen that the new scanner that we get
914
// during heap.next() is requiring reseek due of fake KV previously generated for
915
// ROWCOL bloom filter optimization. See HBASE-19863 for more details
916
- if (useRowColBloom && nextCell != null && matcher.compareKeyForNextColumn(nextCell, cell) < 0) {
+ if (
917
+ useRowColBloom && nextCell != null && cell.getTimestamp() == PrivateConstants.OLDEST_TIMESTAMP
918
+ ) {
919
return false;
920
}
921
return true;
0 commit comments