PDavid commented on code in PR #6361: URL: https://github.com/apache/hbase/pull/6361#discussion_r1822817871
########## hbase-client/src/main/java/org/apache/hadoop/hbase/filter/PrefixFilter.java: ########## @@ -50,10 +70,12 @@ public byte[] getPrefix() { @Override public boolean filterRowKey(Cell firstRowCell) { - if (firstRowCell == null || this.prefix == null) return true; - if (filterAllRemaining()) return true; - int length = firstRowCell.getRowLength(); - if (length < prefix.length) return true; + if (firstRowCell == null || this.prefix == null) { + return true; + } + if (filterAllRemaining()) { + return true; + } // if they are equal, return false => pass row // else return true, filter row // if we are passed the prefix, set flag Review Comment: I'll update this comment as the behavior of the filter changed a bit. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@hbase.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org