summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_bugs/r/5695.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2016-04-26 20:56:25 +0200
committerSergei Golubchik <serg@mariadb.org>2016-04-26 20:56:25 +0200
commit9a957a5b56005f1387aedb77509e1a0c31b7da9a (patch)
tree88c23e66b1b072a59eea02dfa53701fce80d9ef1 /storage/tokudb/mysql-test/tokudb_bugs/r/5695.result
parentae6cc54a4ae6a0764330a6a1c42baae4ec34442f (diff)
downloadmariadb-git-9a957a5b56005f1387aedb77509e1a0c31b7da9a.tar.gz
move mysql-test into storage/tokudb, rename suites
Diffstat (limited to 'storage/tokudb/mysql-test/tokudb_bugs/r/5695.result')
-rw-r--r--storage/tokudb/mysql-test/tokudb_bugs/r/5695.result32
1 files changed, 32 insertions, 0 deletions
diff --git a/storage/tokudb/mysql-test/tokudb_bugs/r/5695.result b/storage/tokudb/mysql-test/tokudb_bugs/r/5695.result
new file mode 100644
index 00000000000..9ae4b1b7986
--- /dev/null
+++ b/storage/tokudb/mysql-test/tokudb_bugs/r/5695.result
@@ -0,0 +1,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;