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

Lars Hofhansl resolved HBASE-3731.
----------------------------------

    Resolution: Implemented

The mentioned code no longer exists in 0.96. Closing,
                
> NPE in HTable.getRegionsInfo()
> ------------------------------
>
>                 Key: HBASE-3731
>                 URL: https://issues.apache.org/jira/browse/HBASE-3731
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Liyin Tang
>
> In HTable.getRegionInfo
> <code>
> HRegionInfo info = Writables.getHRegionInfo(
>             rowResult.getValue(HConstants.CATALOG_FAMILY,
>                 HConstants.REGIONINFO_QUALIFIER));
> </code>
> But the rowResult.getValue() may return null, and Writables.getHRegionInfo 
> will throw NullPoinException when the parameter is null.
> 2 fixes here: 
> 1) In Writables.getHRegionInfo(). We need to check whether the data is null 
> before using data.length.
> 2)<code>
> HRegionInfo info = Writables.getHRegionInfoOrNull(
>             rowResult.getValue(HConstants.CATALOG_FAMILY,
>                 HConstants.REGIONINFO_QUALIFIER));
> if(info == null)
>   return false
> </code>
> Any thoughts?

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to