You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Anoop Sam John (JIRA)" <ji...@apache.org> on 2015/04/17 09:32:01 UTC

[jira] [Created] (HBASE-13491) Issue in FuzzyRowFilter#getNextForFuzzyRule

Anoop Sam John created HBASE-13491:
--------------------------------------

             Summary: Issue in FuzzyRowFilter#getNextForFuzzyRule
                 Key: HBASE-13491
                 URL: https://issues.apache.org/jira/browse/HBASE-13491
             Project: HBase
          Issue Type: Bug
          Components: Filters
            Reporter: Anoop Sam John
            Assignee: Anoop Sam John


{code}
for (int i = 0; i < result.length; i++) {
      if (i >= fuzzyKeyMeta.length || fuzzyKeyMeta[i] == 1) {
        result[i] = row[offset + i];
        if (!order.isMax(row[i])) {
          // this is "non-fixed" position and is not at max value, hence we can increase it
          toInc = i;
        }
      }
{code}
See we take row bytes with out considering the row offset.  The test cases are passing as we pass 0 offset row bytes. Change in the test will reveal the bug.

Came across this when I was working on HBASE-11425



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