mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
6fa261e95f
git-svn-id: file:///svn/mysql/tests/mysql-test@44642 c7de825b-a66e-492c-adef-691d508d4ae1
13 lines
306 B
Text
13 lines
306 B
Text
let $engine='tokudb';
|
|
|
|
--disable_warnings
|
|
drop table if exists t1;
|
|
--enable_warnings
|
|
|
|
create table t1 (c1 int not null primary key, c2 int not null) engine=tokudb;
|
|
show create table t1;
|
|
insert into t1 (c1,c2) values (1,1),(2,2);
|
|
alter table t1 row_format=tokudb_lzma;
|
|
show create table t1;
|
|
|
|
drop table t1;
|