Details
Description
ij> create table t1(x int);
0 rows inserted/updated/deleted
ij> create table t2(x int);
0 rows inserted/updated/deleted
ij> insert into t2 values (1);
1 row inserted/updated/deleted
ij> select * from t1 right join t2 on t1.x = t2.x where t1.x not between 0 and 4;
X |X
-----------------------
ERROR 38000: The exception 'java.lang.NullPointerException' was thrown while evaluating an expression.
ERROR XJ001: Java exception: ': java.lang.NullPointerException'.
Attachments
Attachments
Issue Links
- relates to
-
DERBY-4342 SQLSTATE 38000 (NullPointerException) at inner self join and value(x1, x2...)
- Closed