Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.3.13
-
None
-
None
Description
After rev 3702 the following test case causes a crash of the server
CREATE TABLE t1 (a DATE, b INT, c INT, KEY(a), KEY(b), KEY(c)) ENGINE=MyISAM;
|
CREATE TABLE t2 (d DATE) ENGINE=MyISAM;
|
|
SELECT * FROM t1,t2 WHERE 1 IS NOT NULL AND t1.b IS NULL;
|
|
DROP TABLE t1,t2;
|
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Description |
After rev 3702 the following test case causes a crash of the server {sql.code} CREATE TABLE t1 (a DATE, b INT, c INT, KEY(a), KEY(b), KEY(c)) ENGINE=MyISAM; CREATE TABLE t2 (d DATE) ENGINE=MyISAM; SELECT * FROM t1,t2 WHERE 1 IS NOT NULL AND t1.b IS NULL; DROP TABLE t1,t2; {code} |
After rev 3702 the following test case causes a crash of the server {code} CREATE TABLE t1 (a DATE, b INT, c INT, KEY(a), KEY(b), KEY(c)) ENGINE=MyISAM; CREATE TABLE t2 (d DATE) ENGINE=MyISAM; SELECT * FROM t1,t2 WHERE 1 IS NOT NULL AND t1.b IS NULL; DROP TABLE t1,t2; {code} |
Summary | Crash on a simple join query with IS NULL and NOT IS NULL in where | Crash on a simple join query with IS NULL and IS NOT NULL in where |
Resolution | Fixed [ 1 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | defaullt [ 29262 ] | MariaDB v2 [ 44208 ] |
Workflow | MariaDB v2 [ 44208 ] | MariaDB v3 [ 63493 ] |
Workflow | MariaDB v3 [ 63493 ] | MariaDB v4 [ 147122 ] |
The bug was fixed in the revision 3704.