summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_bugs/r/5695.result
blob: 9ae4b1b7986457504f910670e1cb1e20ad99b650 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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;