File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 29
29
import org .apache .hadoop .hbase .CellComparator ;
30
30
import org .apache .hadoop .hbase .CellUtil ;
31
31
import org .apache .hadoop .hbase .DoNotRetryIOException ;
32
+ import org .apache .hadoop .hbase .HConstants ;
32
33
import org .apache .hadoop .hbase .KeyValue ;
33
34
import org .apache .hadoop .hbase .KeyValueUtil ;
34
35
import org .apache .hadoop .hbase .PrivateCellUtil ;
@@ -935,7 +936,7 @@ protected boolean trySkipToNextColumn(Cell cell) throws IOException {
935
936
// We need this check because it may happen that the new scanner that we get
936
937
// during heap.next() is requiring reseek due of fake KV previously generated for
937
938
// ROWCOL bloom filter optimization. See HBASE-19863 for more details
938
- if (useRowColBloom && nextCell != null && matcher . compareKeyForNextColumn ( nextCell , cell ) < 0 ) {
939
+ if (useRowColBloom && nextCell != null && cell . getTimestamp () == PrivateConstants . OLDEST_TIMESTAMP ) {
939
940
return false ;
940
941
}
941
942
return true ;
You can’t perform that action at this time.
0 commit comments