-
-
Notifications
You must be signed in to change notification settings - Fork 221
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect column values with outer joins and derived tables [CORE1246] #1670
Comments
Modified by: @asfernandesVersion: 2.1 Beta 1 [ 10141 ] Fix Version: 2.1 Beta 1 [ 10141 ] => assignee: Adriano dos Santos Fernandes [ asfernandes ] => |
Commented by: @asfernandes Fix rolled-back. |
Modified by: @asfernandesstatus: Reopened [ 4 ] => Resolved [ 5 ] resolution: Fixed [ 1 ] Fix Version: 2.1 Beta 1 [ 10141 ] assignee: Adriano dos Santos Fernandes [ asfernandes ] |
Modified by: @pcisarWorkflow: jira [ 12030 ] => Firebird [ 15523 ] |
Modified by: @asfernandes |
Commented by: @asfernandes Jiri, this problem seems not exactly the one you sent to fb-devel. |
Modified by: @asfernandesstatus: Reopened [ 4 ] => Resolved [ 5 ] resolution: Fixed [ 1 ] Fix Version: 2.5 Beta 1 [ 10251 ] Fix Version: 3.0.0 [ 10048 ] => |
Commented by: @asfernandes Various test cases: create table t1 (n integer); insert into t1 values (1); insert into t2 values (1); commit; -- shoud be tested with and without indexes select 1 a, b select 1 a, b select a, b select a, b select a, b select a, b select a, b select a, b select a, b select * select * select * select * select * create view v1 (n1, x1, n2, x2) as select * from v1; select * select * select * select * select * select * select * select * select * select * |
Modified by: @asfernandes |
Commented by: @pcisar QA test added. |
Modified by: @pcisarstatus: Resolved [ 5 ] => Closed [ 6 ] |
Modified by: @asfernandes |
Modified by: @pavel-zotovQA Status: No test |
Modified by: @pavel-zotovQA Status: No test => Done successfully |
Submitted by: @asfernandes
Is duplicated by CORE1808
Is duplicated by CORE2537
Block progress on CORE3354
Is related to QA327
Relate to CORE4083
Metadata:
CREATE TABLE T1 (N INTEGER);
CREATE TABLE T2 (N INTEGER);
Data:
insert into t1 values (1);
insert into t1 values (2);
insert into t2 values (2);
This query:
select *
from (select 1 n from rdb$database) t1
full join (select 2 n from rdb$database) t2
on (t2.n = t1.n)
;
Should return:
N N
============ ============
<null> 2
1 <null>
And not:
N N
============ ============
1 2
1 2
Commits: f32516e 53f18ba 774635c b550749 f8c2d59 595a185 3d246af d27a1bd
The text was updated successfully, but these errors were encountered: