HBASE-1537 Intra-row scanning; Query matcher will be confused if intra-row scanning
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@978980 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e60312c1bd
commit
95612cd281
|
@ -227,7 +227,12 @@ class StoreScanner implements KeyValueScanner, InternalScanner, ChangedReadersOb
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// only call setRow if the row changes; avoids confusing the query matcher
|
||||||
|
// if scanning intra-row
|
||||||
|
if ((matcher.row == null) || !peeked.matchingRow(matcher.row)) {
|
||||||
matcher.setRow(peeked.getRow());
|
matcher.setRow(peeked.getRow());
|
||||||
|
}
|
||||||
|
|
||||||
KeyValue kv;
|
KeyValue kv;
|
||||||
List<KeyValue> results = new ArrayList<KeyValue>();
|
List<KeyValue> results = new ArrayList<KeyValue>();
|
||||||
LOOP: while((kv = this.heap.peek()) != null) {
|
LOOP: while((kv = this.heap.peek()) != null) {
|
||||||
|
|
Loading…
Reference in New Issue