[ 
https://issues.apache.org/jira/browse/HBASE-1301?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rong-En Fan updated HBASE-1301:
-------------------------------

    Attachment: 1301.patch

Fix javadoc

> 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, documentation
>    Affects Versions: 0.19.0, 0.19.1
>            Reporter: Rong-En Fan
>            Assignee: Rong-En Fan
>            Priority: Minor
>         Attachments: 1301.patch
>
>
> 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.

Reply via email to