mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 11:57:38 +02:00
12 lines
293 B
Text
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;
|