Skip to content

Commit

Permalink
HBASE-28055 Addendum. Fixing the compilation failure
Browse files Browse the repository at this point in the history
  • Loading branch information
ss77892 committed Sep 12, 2023
1 parent 4c1fd0d commit b488537
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -913,9 +913,7 @@ protected boolean trySkipToNextColumn(Cell cell) throws IOException {
// We need this check because it may happen that the new scanner that we get
// during heap.next() is requiring reseek due of fake KV previously generated for
// ROWCOL bloom filter optimization. See HBASE-19863 for more details
if (
useRowColBloom && nextCell != null && cell.getTimestamp() == PrivateConstants.OLDEST_TIMESTAMP
) {
if (useRowColBloom && nextCell != null && cell.getTimestamp() == HConstants.OLDEST_TIMESTAMP) {
return false;
}
return true;
Expand Down

0 comments on commit b488537

Please sign in to comment.