mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 07:44:22 +01:00
34 lines
1 KiB
Text
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;
|