[ 
https://issues.apache.org/jira/browse/HBASE-15247?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15158687#comment-15158687
 ] 

Hudson commented on HBASE-15247:
--------------------------------

SUCCESS: Integrated in HBase-1.3 #565 (See 
[https://builds.apache.org/job/HBase-1.3/565/])
HBASE-15247 InclusiveStopFilter does not respect reverse Filter (anoopsamjohn: 
rev cc45b4ab38edee680a4356d3f57437d12a55de24)
* hbase-server/src/test/java/org/apache/hadoop/hbase/filter/TestFilter.java
* 
hbase-client/src/main/java/org/apache/hadoop/hbase/filter/InclusiveStopFilter.java


> InclusiveStopFilter does not respect reverse Filter property
> ------------------------------------------------------------
>
>                 Key: HBASE-15247
>                 URL: https://issues.apache.org/jira/browse/HBASE-15247
>             Project: HBase
>          Issue Type: Bug
>          Components: Filters
>    Affects Versions: 2.0.0, 1.1.1
>            Reporter: Rick Moritz
>            Assignee: Amal Joshy
>             Fix For: 2.0.0, 1.3.0
>
>         Attachments: HBASE-15247-branch-1.1.patch, HBASE-15247.patch
>
>
> InclusiveStopFilter only works with non-reversed Scans, it will not filter 
> for reversed Scans, because it doesn't flip the cmp-operand in the reversed 
> case. In fact, it doesn't even use the Filter.reverse flag.
> it should be something like this:
> if (reversed) {
>             if (cmp > 0) {
>                 done = true;
>             }
>         }
>         else {
>             if (cmp < 0) {
>                 done = true;
>             }
>         }



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to