2013-02-22 19:47:49 +00:00
|
|
|
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
|
|
|
|
DROP TABLE IF EXISTS foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_small;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
2013-10-19 06:22:50 -04:00
|
|
|
tokudb_lzma
|
2013-02-22 19:47:49 +00:00
|
|
|
drop table foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_fast;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
2013-10-19 06:22:50 -04:00
|
|
|
tokudb_quicklz
|
2013-02-22 19:47:49 +00:00
|
|
|
drop table foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_zlib;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
|
|
|
tokudb_zlib
|
|
|
|
drop table foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_lzma;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
|
|
|
tokudb_lzma
|
|
|
|
drop table foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_quicklz;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
|
|
|
tokudb_quicklz
|
|
|
|
drop table foo;
|
|
|
|
create table foo (a int)ROW_FORMAT=tokudb_uncompressed;
|
|
|
|
select ROW_FORMAT from information_schema.tables where table_name='foo';
|
|
|
|
ROW_FORMAT
|
|
|
|
tokudb_uncompressed
|
|
|
|
drop table foo;
|