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

Hudson commented on HBASE-15253:
--------------------------------

FAILURE: Integrated in HBase-Trunk_matrix #701 (See 
[https://builds.apache.org/job/HBase-Trunk_matrix/701/])
HBASE-15253 Small bug in CellUtil.matchingRow(Cell, byte[]) (Ram) (ramkrishna: 
rev a975408b7c90e2d545a7a490687cddb717d43807)
* hbase-common/src/main/java/org/apache/hadoop/hbase/CellUtil.java


> Small bug in CellUtil.matchingRow(Cell, byte[])
> -----------------------------------------------
>
>                 Key: HBASE-15253
>                 URL: https://issues.apache.org/jira/browse/HBASE-15253
>             Project: HBase
>          Issue Type: Bug
>            Reporter: ramkrishna.s.vasudevan
>            Assignee: ramkrishna.s.vasudevan
>            Priority: Minor
>             Fix For: 2.0.0
>
>         Attachments: HBASE-15253.patch
>
>
> {code}
>   public static boolean matchingRow(final Cell left, final byte[] buf) {
>     if (buf == null) {
>       return left.getQualifierLength() == 0;
>     }
>     return matchingRow(left, buf, 0, buf.length);
>   }
> {code}
> The 'if' condition should check for left.getRowLength() == 0.



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

Reply via email to