#212 test case for mdev-4533

This commit is contained in:
Rich Prohaska 2014-04-25 14:39:54 -04:00
parent cf53d4df0a
commit ff984b5713
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,5 @@
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (a INT(11), b CHAR(8)) ENGINE=TokuDB;
INSERT INTO t1 (a,b) VALUES (10000,'foobar'),(1,'a'),(2,'b'),(3,'c'),(4,'d'),(5,'e');
DELETE IGNORE FROM t1;
drop table t1;

View file

@ -0,0 +1,9 @@
source include/have_tokudb.inc;
source include/have_binlog_format_row.inc;
disable_warnings;
DROP TABLE IF EXISTS t1;
enable_warnings;
CREATE TABLE t1 (a INT(11), b CHAR(8)) ENGINE=TokuDB;
INSERT INTO t1 (a,b) VALUES (10000,'foobar'),(1,'a'),(2,'b'),(3,'c'),(4,'d'),(5,'e');
DELETE IGNORE FROM t1;
drop table t1;