mariadb/storage/tokudb/mysql-test/tokudb_bugs/t/5695.test
2013-09-09 13:59:38 +02:00

34 lines
1 KiB
Text

--source include/have_tokudb.inc
#
# Record inconsistency.
#
#
SET DEFAULT_STORAGE_ENGINE = 'tokudb';
--disable_warnings
DROP TABLE IF EXISTS foo;
--enable_warnings
create table foo (a int) compression=tokudb_small;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int) compression=tokudb_fast;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int) compression=tokudb_zlib;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int) compression=tokudb_lzma;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int) compression=tokudb_quicklz;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int) compression=tokudb_uncompressed;
select CREATE_OPTIONS from information_schema.tables where table_name='foo';
drop table foo;