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

mserver crashes under specific combination of JOIN and WHERE conditions #3872

Closed
monetdb-team opened this issue Nov 30, 2020 · 0 comments
Closed
Labels
bug Something isn't working normal SQL

Comments

@monetdb-team
Copy link

Date: 2015-11-18 21:59:43 +0100
From: @yzchang
To: SQL devs <>
Version: 11.21.11 (Jul2015-SP1)
CC: @yzchang

Last updated: 2016-01-15 11:38:07 +0100

Comment 21554

Date: 2015-11-18 21:59:43 +0100
From: @yzchang

It seems that only the specific combination of the JOIN and WHERE conditions in the query below crashes mserver, because the crash doesn't happen when the conditions are slightly changed.

CREATE TABLE foo (startdate DATE, enddate DATE);
CREATE TABLE bar (id INTEGER);

SELECT COUNT(*)
FROM foo AS A
INNER JOIN foo AS B
ON (
(B.startdate = B.enddate
AND (B.startdate = A.startdate OR B.startdate = A.enddate)
) OR (
A.startdate < B.enddate AND A.enddate > B.startdate
)
)
WHERE EXISTS (
SELECT TRUE
FROM bar
WHERE A.startdate > '2010-10-01'
)
AND A.startdate >= B.startdate;

Comment 21555

Date: 2015-11-18 22:05:21 +0100
From: MonetDB Mercurial Repository <>

Changeset cf67ddd5966a made by Jennie Zhang y.zhang@cwi.nl in the MonetDB repo, refers to this bug.

For complete details, see http//devmonetdborg/hg/MonetDB?cmd=changeset;node=cf67ddd5966a

Changeset description:

Added test for Bug #3872

Comment 21556

Date: 2015-11-18 22:08:58 +0100
From: @yzchang

This bug is fixed by Changeset: 07d638d6680a

@monetdb-team monetdb-team added bug Something isn't working normal SQL labels Nov 30, 2020
@sjoerdmullender sjoerdmullender added this to the Ancient Release milestone Feb 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working normal SQL
Projects
None yet
Development

No branches or pull requests

2 participants