mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 19:41:47 +01:00
a0dab9b34f
git-svn-id: file:///svn/mysql/tests/mysql-test@40974 c7de825b-a66e-492c-adef-691d508d4ae1
17 lines
459 B
Text
17 lines
459 B
Text
SET STORAGE_ENGINE = 'tokudb';
|
|
DROP TABLE IF EXISTS foo,bar;
|
|
create table foo (a int, b int);
|
|
create table bar (a int, key(a));
|
|
show create table foo;
|
|
Table Create Table
|
|
foo CREATE TABLE `foo` (
|
|
`a` int(11) DEFAULT NULL,
|
|
`b` int(11) DEFAULT NULL
|
|
) ENGINE=TokuDB DEFAULT CHARSET=latin1
|
|
show create table bar;
|
|
Table Create Table
|
|
bar CREATE TABLE `bar` (
|
|
`a` int(11) DEFAULT NULL,
|
|
KEY `a` (`a`)
|
|
) ENGINE=TokuDB DEFAULT CHARSET=latin1
|
|
DROP TABLE foo,bar;
|