mariadb/mysql-test/suite/tokudb/t/cluster_key.test
Sergei Golubchik ae6cc54a4a 5.6.28-76.1
2016-02-16 19:44:10 +01:00

12 lines
293 B
Text

--source include/have_tokudb.inc
SET DEFAULT_STORAGE_ENGINE='tokudb';
--disable_warnings
DROP TABLE IF EXISTS t1;
--enable_warnings
create table t1(a int, b int, c int, d int, primary key(a,b,c), clustering key(b), key (c))engine=tokudb;
--source ../include/cluster_key.inc
drop table t1;