HBASE-665 server side scanner doesn't honor stop row

git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@664180 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-06-06 22:58:10 +00:00
parent ae83b2d6d5
commit fb9dc18b02
1 changed files with 5 additions and 1 deletions

View File

@ -1822,7 +1822,11 @@ public class HRegion implements HConstants {
}
filtered = filter == null ? false : filter.filterRow(results);
if (filter != null && filter.filterAllRemaining()) {
moreToFollow = false;
}
if (moreToFollow) {
if (filter != null) {
filter.rowProcessed(filtered, key.getRow());