mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
32 lines
1 KiB
Text
32 lines
1 KiB
Text
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
|
|
tokudb_lzma
|
|
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
|
|
tokudb_quicklz
|
|
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;
|