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 d395ab8 commit 34088e6Copy full SHA for 34088e6
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java
@@ -913,9 +913,7 @@ 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 (
917
- useRowColBloom && nextCell != null && cell.getTimestamp() == PrivateConstants.OLDEST_TIMESTAMP
918
- ) {
+ if (useRowColBloom && nextCell != null && cell.getTimestamp() == HConstants.OLDEST_TIMESTAMP) {
919
return false;
920
}
921
return true;
0 commit comments