Commit ff984b57 authored by Rich Prohaska's avatar Rich Prohaska

#212 test case for mdev-4533

parent cf53d4df
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;
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
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