ramkrishna.s.vasudevan created HBASE-15253:
----------------------------------------------
Summary: 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
Fix For: 2.0.0
{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)