blob: 081c22457876432fd6d183b1cbd4de3efb96c183 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
|