HTable.getRow() returns null if the row does no exist
-----------------------------------------------------
Key: HBASE-1301
URL: https://issues.apache.org/jira/browse/HBASE-1301
Project: Hadoop HBase
Issue Type: Bug
Components: client
Affects Versions: 0.19.1
Reporter: Rong-En Fan
Priority: Minor
The HBase API docs says when the row does not exist, getRow() returns
RowResult is empty if row does not exist.
However, in regionserver/HRegionServer.java's getRow():
if (result == null || result.isEmpty())
return null;
return new RowResult(row, result);
It actually returns null. Either fix the code or the document.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.