[
https://issues.apache.org/jira/browse/PHOENIX-1288?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14147027#comment-14147027
]
Hudson commented on PHOENIX-1288:
---------------------------------
ABORTED: Integrated in Phoenix | 3.0 | Hadoop1 #222 (See
[https://builds.apache.org/job/Phoenix-3.0-hadoop1/222/])
PHOENIX-1288 Fix selecting multiple array indexes (gabrielr: rev
48a4bd6709e49d8e629e766b2469bb96b0699c37)
* phoenix-core/src/it/java/org/apache/phoenix/end2end/ArrayIT.java
*
phoenix-core/src/main/java/org/apache/phoenix/coprocessor/ScanRegionObserver.java
> Selecting more than 2 array elements via index fails with
> ArrayIndexOutOfBoundsException
> ----------------------------------------------------------------------------------------
>
> Key: PHOENIX-1288
> URL: https://issues.apache.org/jira/browse/PHOENIX-1288
> Project: Phoenix
> Issue Type: Bug
> Affects Versions: 3.1, 4.1
> Reporter: Gabriel Reid
> Assignee: Gabriel Reid
> Fix For: 4.2, 3.2
>
> Attachments: PHOENIX-1288.patch
>
>
> Selecting more than two individual array elements in a query results in an
> ArrayIndexOutOfBoundsException thrown from ScanRegionObserver.
> An example of a query that will trigger this situation is as follows:
> {code}select arr[1], arr[2], arr[3] from table_with_array{code}
> The cause appears to be the replaceArrayIndexElement method in
> ScanRegionObserver. It removes a Cell for each array reference in the query,
> with the intention of replacing them with a reduced Cell that only contains
> the requested values of the array. The current impl attempts to remove the
> same KeyValue multiple times, and in the end attempts to remove more
> KeyValues than there are in the original list.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)