mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 06:44:16 +01:00
#212 test case for mdev-4533
This commit is contained in:
parent
cf53d4df0a
commit
ff984b5713
2 changed files with 14 additions and 0 deletions
5
mysql-test/suite/tokudb.bugs/r/mdev4533.result
Normal file
5
mysql-test/suite/tokudb.bugs/r/mdev4533.result
Normal 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;
|
9
mysql-test/suite/tokudb.bugs/t/mdev4533.test
Normal file
9
mysql-test/suite/tokudb.bugs/t/mdev4533.test
Normal 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;
|
Loading…
Add table
Reference in a new issue