mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
aff4854dfd
git://github.com/Tokutek/ft-index.git git://github.com/Tokutek/ft-engine.git at the tag tokudb-7.1.6
9 lines
No EOL
312 B
Text
9 lines
No EOL
312 B
Text
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; |