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

Hudson commented on HBASE-17941:
--------------------------------

SUCCESS: Integrated in Jenkins build HBase-Trunk_matrix #2897 (See 
[https://builds.apache.org/job/HBase-Trunk_matrix/2897/])
HBASE-17941 CellArrayMap#getCell may throw IndexOutOfBoundsException (chia7712: 
rev 33dadc1a941a536742799a46444c67a1ed66d124)
* (edit) 
hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/CellArrayMap.java


> CellArrayMap#getCell may throw IndexOutOfBoundsException
> --------------------------------------------------------
>
>                 Key: HBASE-17941
>                 URL: https://issues.apache.org/jira/browse/HBASE-17941
>             Project: HBase
>          Issue Type: Bug
>    Affects Versions: 2.0.0
>            Reporter: Chia-Ping Tsai
>            Assignee: Hsin-Ying Lee
>            Priority: Minor
>              Labels: beginner
>             Fix For: 2.0.0
>
>         Attachments: HBASE-17941.v0.patch
>
>
> {noformat}
>   @Override
>   protected Cell getCell(int i) {
>     if( (i < minCellIdx) && (i >= maxCellIdx) ) return null;
>     return block[i];
>   }
> {noformat}
> && -> ||
> We have checked the index of bound before calling this method, so the 
> exception doesn't happen at current trunk.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to