
| Key: |
DERBY-3538
|
| Type: |
Bug
|
| Status: |
Resolved
|
| Resolution: |
Fixed
|
| Priority: |
Minor
|
| Assignee: |
A B
|
| Reporter: |
A B
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Resolution Date: |
20/Mar/08 03:31 PM
|
|
For a query having a LEFT OUTER JOIN such that the right, or "inner", table is a SELECT subquery whose result column list consists entirely of constants, Derby may throw an execution-time NPE while trying to apply the join predicate. I say "may" because it depends on which join strategy the optimizer chooses.
Using optimizer overrides I was able to reproduce this problem against trunk with the following (admittedly nonsense) query:
create table t1 (i int, j int);
insert into t1 values (-1, -2), (-2, -4), (-3, -9);
select * from
t1 left outer join
(select -1 a, 1 b from t1) x0 --DERBY-PROPERTIES joinStrategy=NESTEDLOOP
on x0.a = t1.i;
I |J |A |B
-----------------------------------------------
-1 |-2 |-1 |1
-1 |-2 |-1 |1
-1 |-2 |-1 |1
ERROR 38000: The exception 'java.lang.NullPointerException' was thrown while evaluating an expression.
ERROR XJ001: Java exception: ': java.lang.NullPointerException'.
Running the same query also failed with the same NPE on 10.0.2.1, even though optimizer overrides don't exist there. So I'm marking all known releases to be affected by this issue.
Note: while this particular query may not make much sense, I have seen a user with a very large, auto-generated query that, when executed, fails due to this problem. So it is worth investigating...
|
|
Description
|
For a query having a LEFT OUTER JOIN such that the right, or "inner", table is a SELECT subquery whose result column list consists entirely of constants, Derby may throw an execution-time NPE while trying to apply the join predicate. I say "may" because it depends on which join strategy the optimizer chooses.
Using optimizer overrides I was able to reproduce this problem against trunk with the following (admittedly nonsense) query:
create table t1 (i int, j int);
insert into t1 values (-1, -2), (-2, -4), (-3, -9);
select * from
t1 left outer join
(select -1 a, 1 b from t1) x0 --DERBY-PROPERTIES joinStrategy=NESTEDLOOP
on x0.a = t1.i;
I |J |A |B
-----------------------------------------------
-1 |-2 |-1 |1
-1 |-2 |-1 |1
-1 |-2 |-1 |1
ERROR 38000: The exception 'java.lang.NullPointerException' was thrown while evaluating an expression.
ERROR XJ001: Java exception: ': java.lang.NullPointerException'.
Running the same query also failed with the same NPE on 10.0.2.1, even though optimizer overrides don't exist there. So I'm marking all known releases to be affected by this issue.
Note: while this particular query may not make much sense, I have seen a user with a very large, auto-generated query that, when executed, fails due to this problem. So it is worth investigating... |
Show » |
|
mb.push(resultColumns.reusableResult());
At execution, ProjectResrictResultSet sees that it can reuse the result set so it "caches" the execution row in doProjection() and then just returns that on subsequent calls. However, when returning the cached row, the method does *not* call "setCurrentRow()" with the cached row. In some cases (esp. left outer join) that can mean that the "current execution row" corresponding to the ProjectRestrictResultSet remains null when it should be set to the cached row. Thus when it comes time to evaluate the ON predicate, which references the ProjectRestrictResultSet's execution row, the predicate fails with an NPE because the "current execution row" is not set for that PRRS.
I'm attaching a quick change that resolves the reported NPE. I have *not* run any tests on this, so it's not for commit (yet). I don't think I'll have much time to follow-up with this anytime soon, so if anyone out there can pick it up and take it to completion, that'd be great...