HBASE-21590 Optimize trySkipToNextColumn in StoreScanner a bit. (addendum)
This commit is contained in:
parent
2b003c5d68
commit
491153488e
|
@ -807,8 +807,9 @@ public class StoreScanner extends NonReversedNonLazyKeyValueScanner
|
|||
Cell previousIndexedKey = null;
|
||||
do {
|
||||
Cell nextIndexedKey = getNextIndexedKey();
|
||||
if (nextIndexedKey != null && nextIndexedKey != KeyValueScanner.NO_NEXT_INDEXED_KEY
|
||||
&& (nextIndexedKey == previousIndexedKey || matcher.compareKeyForNextRow(nextIndexedKey, cell) >= 0)) {
|
||||
if (nextIndexedKey != null && nextIndexedKey != KeyValueScanner.NO_NEXT_INDEXED_KEY &&
|
||||
(nextIndexedKey == previousIndexedKey ||
|
||||
matcher.compareKeyForNextRow(nextIndexedKey, cell) >= 0)) {
|
||||
this.heap.next();
|
||||
++kvsScanned;
|
||||
previousIndexedKey = nextIndexedKey;
|
||||
|
@ -832,8 +833,9 @@ public class StoreScanner extends NonReversedNonLazyKeyValueScanner
|
|||
Cell previousIndexedKey = null;
|
||||
do {
|
||||
Cell nextIndexedKey = getNextIndexedKey();
|
||||
if (nextIndexedKey != null && nextIndexedKey != KeyValueScanner.NO_NEXT_INDEXED_KEY
|
||||
&& (nextIndexedKey == previousIndexedKey || matcher.compareKeyForNextColumn(nextIndexedKey, cell) >= 0)) {
|
||||
if (nextIndexedKey != null && nextIndexedKey != KeyValueScanner.NO_NEXT_INDEXED_KEY &&
|
||||
(nextIndexedKey == previousIndexedKey ||
|
||||
matcher.compareKeyForNextColumn(nextIndexedKey, cell) >= 0)) {
|
||||
this.heap.next();
|
||||
++kvsScanned;
|
||||
previousIndexedKey = nextIndexedKey;
|
||||
|
|
Loading…
Reference in New Issue