Skip to content

Commit 34088e6

Browse files
ss77892ndimiduk
authored andcommitted
HBASE-28055 Addendum. Fixing the compilation failure
1 parent d395ab8 commit 34088e6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreScanner.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -913,9 +913,7 @@ protected boolean trySkipToNextColumn(Cell cell) throws IOException {
913913
// We need this check because it may happen that the new scanner that we get
914914
// during heap.next() is requiring reseek due of fake KV previously generated for
915915
// ROWCOL bloom filter optimization. See HBASE-19863 for more details
916-
if (
917-
useRowColBloom && nextCell != null && cell.getTimestamp() == PrivateConstants.OLDEST_TIMESTAMP
918-
) {
916+
if (useRowColBloom && nextCell != null && cell.getTimestamp() == HConstants.OLDEST_TIMESTAMP) {
919917
return false;
920918
}
921919
return true;

0 commit comments

Comments
 (0)