HBASE-13122 Revert pending answer to Ram's question

This commit is contained in:
tedyu 2015-03-02 21:00:26 -08:00
parent 5fc3d6ed0d
commit e0019d99de
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ public class ColumnRangeFilter extends FilterBase {
} }
if (!this.minColumnInclusive && cmpMin == 0) { if (!this.minColumnInclusive && cmpMin == 0) {
return ReturnCode.NEXT_COL; return ReturnCode.SKIP;
} }
if (this.maxColumn == null) { if (this.maxColumn == null) {

View File

@ -65,7 +65,7 @@ public class FamilyFilter extends CompareFilter {
if (familyLength > 0) { if (familyLength > 0) {
if (doCompare(this.compareOp, this.comparator, v.getFamilyArray(), if (doCompare(this.compareOp, this.comparator, v.getFamilyArray(),
v.getFamilyOffset(), familyLength)) { v.getFamilyOffset(), familyLength)) {
return ReturnCode.NEXT_ROW; return ReturnCode.SKIP;
} }
} }
return ReturnCode.INCLUDE; return ReturnCode.INCLUDE;