mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 14:45:34 +02:00
14 lines
339 B
Text
14 lines
339 B
Text
source include/have_tokudb.inc;
|
|
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 compression=tokudb_lzma;
|
|
show create table t1;
|
|
|
|
drop table t1;
|