#267 fix mdev5932 test and result

This commit is contained in:
Rich Prohaska 2014-07-23 10:00:13 -04:00
parent 2df69f5258
commit 3d4e10eeeb
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
drop table if exists t1,t2;
drop table if exists t1i,t2i;
drop table if exists tsub,t3;
CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB;
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 );

View file

@ -4,6 +4,7 @@ source include/have_innodb.inc;
disable_warnings;
drop table if exists t1,t2;
drop table if exists t1i,t2i;
drop table if exists tsub,t3;
enable_warnings;
CREATE TABLE t1 (a CHAR(3), INDEX(a)) ENGINE=TokuDB;