Commit 3d4e10ee authored by Rich Prohaska's avatar Rich Prohaska

#267 fix mdev5932 test and result

parent 2df69f52
drop table if exists t1,t2; drop table if exists t1,t2;
drop table if exists t1i,t2i; drop table if exists t1i,t2i;
drop table if exists tsub,t3;
CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB; CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB;
INSERT INTO t1 VALUES ('foo'),( NULL); INSERT INTO t1 VALUES ('foo'),( NULL);
SELECT * FROM t1 WHERE 'bar' NOT IN ( SELECT t1_1.a FROM t1 AS t1_1, t1 AS t1_2 ); SELECT * FROM t1 WHERE 'bar' NOT IN ( SELECT t1_1.a FROM t1 AS t1_1, t1 AS t1_2 );
......
...@@ -4,6 +4,7 @@ source include/have_innodb.inc; ...@@ -4,6 +4,7 @@ source include/have_innodb.inc;
disable_warnings; disable_warnings;
drop table if exists t1,t2; drop table if exists t1,t2;
drop table if exists t1i,t2i; drop table if exists t1i,t2i;
drop table if exists tsub,t3;
enable_warnings; enable_warnings;
CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB; CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment