diff --git a/mysql-test/suite/tokudb.bugs/r/mdev4533.result b/mysql-test/suite/tokudb.bugs/r/mdev4533.result new file mode 100644 index 00000000000..8a53e820d7a --- /dev/null +++ b/mysql-test/suite/tokudb.bugs/r/mdev4533.result @@ -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; diff --git a/mysql-test/suite/tokudb.bugs/t/mdev4533.test b/mysql-test/suite/tokudb.bugs/t/mdev4533.test new file mode 100644 index 00000000000..87f64dc704f --- /dev/null +++ b/mysql-test/suite/tokudb.bugs/t/mdev4533.test @@ -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; \ No newline at end of file