We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa84f5 commit ba21710Copy full SHA for ba21710
hbase-client/src/main/java/org/apache/hadoop/hbase/filter/PrefixFilter.java
@@ -76,9 +76,9 @@ public boolean filterRowKey(Cell firstRowCell) {
76
if (filterAllRemaining()) {
77
return true;
78
}
79
- // if the cell is smaller => return false so that getNextCellHint() is invoked.
+ // if the cell is before => return false so that getNextCellHint() is invoked.
80
// if they are equal, return false => pass row
81
- // if the cell is bigger => return true, filter row
+ // if the cell is after => return true, filter row
82
// if we are passed the prefix, set flag
83
int cmp;
84
if (firstRowCell instanceof ByteBufferExtendedCell) {
0 commit comments