HBASE-14397 Revert pending review comments

This commit is contained in:
tedyu 2015-09-22 10:00:11 -07:00
parent cb1c44df6c
commit 992856c11d
1 changed files with 1 additions and 7 deletions

View File

@ -38,11 +38,9 @@ import java.util.ArrayList;
@InterfaceAudience.Public
@InterfaceStability.Stable
public class PrefixFilter extends FilterBase {
public static final int MAX_SKIPPED_COMPARE_ROW_NUM = 100;
protected byte [] prefix = null;
protected boolean passedPrefix = false;
protected boolean filterRow = true;
protected int skippedCompareRows = 0;
public PrefixFilter(final byte [] prefix) {
this.prefix = prefix;
@ -55,12 +53,8 @@ public class PrefixFilter extends FilterBase {
public boolean filterRowKey(byte[] buffer, int offset, int length) {
if (buffer == null || this.prefix == null)
return true;
if (length < prefix.length && skippedCompareRows < MAX_SKIPPED_COMPARE_ROW_NUM) {
++skippedCompareRows;
if (length < prefix.length)
return true;
}
skippedCompareRows = 0;
// if they are equal, return false => pass row
// else return true, filter row
// if we are passed the prefix, set flag