PDavid commented on code in PR #6361: URL: https://github.com/apache/hbase/pull/6361#discussion_r1820440954
########## hbase-client/src/main/java/org/apache/hadoop/hbase/filter/PrefixFilter.java: ########## @@ -69,13 +74,19 @@ public boolean filterRowKey(Cell firstRowCell) { if ((!isReversed() && cmp > 0) || (isReversed() && cmp < 0)) { passedPrefix = true; } - filterRow = (cmp != 0); + filterRow = (!isReversed() && cmp > 0) || (isReversed() && cmp < 0); Review Comment: Thanks, good point. Actually I was also thinking about this but left it eventually. I'll remove computing this again. -- 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