mariadb/mysql-test/suite/tokudb.bugs/t/5695.test

35 lines
1,006 B
Text
Raw Normal View History

--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)ROW_FORMAT=tokudb_small;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_fast;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_zlib;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_lzma;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_quicklz;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;
create table foo (a int)ROW_FORMAT=tokudb_uncompressed;
select ROW_FORMAT from information_schema.tables where table_name='foo';
drop table foo;