Skip to content
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

Joins with NULL RDB$DB_KEY crash the server [CORE1334] #1753

Closed
firebird-automations opened this issue Jul 1, 2007 · 7 comments
Closed

Joins with NULL RDB$DB_KEY crash the server [CORE1334] #1753

firebird-automations opened this issue Jul 1, 2007 · 7 comments

Comments

@firebird-automations
Copy link
Collaborator

Submitted by: @asfernandes

Is related to QA174

Test case:

create table t1 (id integer primary key);
create table t2 (id integer references t1);

insert into t1 values (1);
insert into t1 values (2);
insert into t2 values (2);

-- this query crash the server derefering a null pointer
select *
from t1
left join t2
on (http://t2.id = http://t1.id)
left join t2 t3
on (t3.rdb$db_key = t2.rdb$db_key);

Commits: 3e33eda

@firebird-automations
Copy link
Collaborator Author

Modified by: @asfernandes

status: Open [ 1 ] => Resolved [ 5 ]

resolution: Fixed [ 1 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

Link: This issue is related to QA174 [ QA174 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pcisar

Workflow: jira [ 12470 ] => Firebird [ 14449 ]

@firebird-automations
Copy link
Collaborator Author

Commented by: @pmakowski

Q/A test ok

@firebird-automations
Copy link
Collaborator Author

Modified by: @pmakowski

status: Resolved [ 5 ] => Closed [ 6 ]

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

QA Status: No test

@firebird-automations
Copy link
Collaborator Author

Modified by: @pavel-zotov

QA Status: No test => Done successfully

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment