You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@phoenix.apache.org by "Hadoop QA (JIRA)" <ji...@apache.org> on 2015/12/02 04:03:10 UTC

[jira] [Commented] (PHOENIX-2402) NPE when using UPSERT SELECT with a char array

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

Hadoop QA commented on PHOENIX-2402:
------------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12775198/PHOENIX-2402_v2.patch
  against master branch at commit 00ee9415a95668c34e95b43003354fc898f6b4ea.
  ATTACHMENT ID: 12775198

    {color:green}+1 @author{color}.  The patch does not contain any @author tags.

    {color:red}-1 tests included{color}.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no new tests are needed for this patch.
                        Also please list what manual steps were performed to verify this patch.

    {color:red}-1 patch{color}.  The patch command could not apply the patch.

Console output: https://builds.apache.org/job/PreCommit-PHOENIX-Build/188//console

This message is automatically generated.

> NPE when using UPSERT SELECT with a char array
> ----------------------------------------------
>
>                 Key: PHOENIX-2402
>                 URL: https://issues.apache.org/jira/browse/PHOENIX-2402
>             Project: Phoenix
>          Issue Type: Bug
>    Affects Versions: 4.5.2
>            Reporter: Julian Jaffe
>            Assignee: Julian Jaffe
>              Labels: patch
>             Fix For: 4.7.0
>
>         Attachments: PHOENIX-2402.patch, PHOENIX-2402_v2.patch
>
>
> A NPE is thrown when attempting to UPSERT SELECT with a char array:
> {code:sql}
> CREATE TABLE IF NOT EXISTS TEST.TEST("testInt" INTEGER, "testCharArray" CHAR(3)[] CONSTRAINT "test_test" PRIMARY KEY ("testInt")) DEFAULT_COLUMN_FAMILY='TT', SALT_BUCKETS=10;
> No rows affected (1.631 seconds)
> 0: jdbc:phoenix:xxxxxx> UPSERT INTO TEST.TEST VALUES(5, ARRAY['aaa','bbb']);
> 1 row affected (0.164 seconds)
> 0: jdbc:phoenix:xxxxxx> SELECT * FROM TEST.TEST;
> +------------------------------------------+---------------+
> |                 testInt                  | testCharArray |
> +------------------------------------------+---------------+
> | 5                                        | ['aaa', 'bbb'] |
> +------------------------------------------+---------------+
> 1 row selected (0.364 seconds)
> 0: jdbc:phoenix:xxxxxx> UPSERT INTO TEST.TEST("testInt", "testCharArray") SELECT "testInt", ARRAY['ccc'] FROM TEST.TEST WHERE "testInt" = 5;
> Error: java.lang.NullPointerException (state=08000,code=101)
> org.apache.phoenix.exception.PhoenixIOException: java.lang.NullPointerException
>     at org.apache.phoenix.util.ServerUtil.parseServerException(ServerUtil.java:108)
>     at org.apache.phoenix.iterate.BaseResultIterators.getIterators(BaseResultIterators.java:553)
>     at org.apache.phoenix.iterate.RoundRobinResultIterator.getIterators(RoundRobinResultIterator.java:176)
>     at org.apache.phoenix.iterate.RoundRobinResultIterator.next(RoundRobinResultIterator.java:91)
>     at org.apache.phoenix.compile.UpsertCompiler$2.execute(UpsertCompiler.java:685)
>     at org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:319)
>     at org.apache.phoenix.jdbc.PhoenixStatement$2.call(PhoenixStatement.java:311)
>     at org.apache.phoenix.call.CallRunner.run(CallRunner.java:53)
>     at org.apache.phoenix.jdbc.PhoenixStatement.executeMutation(PhoenixStatement.java:309)
>     at org.apache.phoenix.jdbc.PhoenixStatement.execute(PhoenixStatement.java:1432)
>     at sqlline.Commands.execute(Commands.java:822)
>     at sqlline.Commands.sql(Commands.java:732)
>     at sqlline.SqlLine.dispatch(SqlLine.java:808)
>     at sqlline.SqlLine.begin(SqlLine.java:681)
>     at sqlline.SqlLine.start(SqlLine.java:398)
>     at sqlline.SqlLine.main(SqlLine.java:292)
> Caused by: java.util.concurrent.ExecutionException: java.lang.NullPointerException
>     at java.util.concurrent.FutureTask.report(FutureTask.java:122)
>     at java.util.concurrent.FutureTask.get(FutureTask.java:206)
>     at org.apache.phoenix.iterate.BaseResultIterators.getIterators(BaseResultIterators.java:549)
>     ... 14 more
> Caused by: java.lang.NullPointerException
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)