EVOLUTION-MANAGER
Edit File: 5695.test
--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;