[
https://issues.apache.org/jira/browse/DERBY-4419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12885042#action_12885042
]
Mike Matrigali commented on DERBY-4419:
---------------------------------------
backported change #831304 from trunk to 10.5 branch:
m105_jdk16:46>svn commit
Sending .
ZSending
java/engine/org/apache/derby/impl/sql/compile/ResultColumnList.java
Sending
java/testing/org/apache/derbyTesting/functionTests/master/autoincrement.out
Sending
java/testing/org/apache/derbyTesting/functionTests/tests/lang/autoincrement.sql
Transmitting file data ...
Committed revision 960346.
> NullPointerException with INSERT INTO ... from UNION and identity columns
> -------------------------------------------------------------------------
>
> Key: DERBY-4419
> URL: https://issues.apache.org/jira/browse/DERBY-4419
> Project: Derby
> Issue Type: Bug
> Components: SQL
> Affects Versions: 10.3.1.4, 10.4.1.3, 10.5.1.1, 10.5.3.0, 10.6.1.0
> Reporter: Knut Anders Hatlen
> Assignee: Mike Matrigali
> Fix For: 10.6.1.0
>
> Attachments: addASimpleTest.diff, npe.sql, use4425CodePatch.diff
>
>
> The following sequence of statements works on 10.2.2.0 and earlier, and
> raises a NullPointerException with 10.3.1.4 and later:
> ij> create table t1(x int);
> 0 rows inserted/updated/deleted
> ij> insert into t1 values 1,2;
> 2 rows inserted/updated/deleted
> ij> create table t2(x int);
> 0 rows inserted/updated/deleted
> ij> insert into t2 values 2,3;
> 2 rows inserted/updated/deleted
> ij> create table t3(x int, y int generated always as identity);
> 0 rows inserted/updated/deleted
> ij> insert into t3(x) select * from t1 union select * from t2;
> ERROR XJ001: Java exception: ': java.lang.NullPointerException'.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.