Commit 789e08b1 authored by Zardosht Kasheff's avatar Zardosht Kasheff

refs #5431, modify hot_row_format_alter test, need to fix result files next

git-svn-id: file:///svn/mysql/tests/mysql-test@47674 c7de825b-a66e-492c-adef-691d508d4ae1
parent a1c36809
...@@ -20,16 +20,22 @@ SELECT * FROM foo; ...@@ -20,16 +20,22 @@ SELECT * FROM foo;
# #
ALTER TABLE foo row_format=TOKUDB_LZMA; ALTER TABLE foo row_format=TOKUDB_LZMA;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
ALTER TABLE foo row_format=TOKUDB_QUICKLZ; ALTER TABLE foo row_format=TOKUDB_QUICKLZ;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
ALTER TABLE foo row_format=TOKUDB_UNCOMPRESSED; ALTER TABLE foo row_format=TOKUDB_UNCOMPRESSED;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
ALTER TABLE foo row_format=TOKUDB_ZLIB; ALTER TABLE foo row_format=TOKUDB_ZLIB;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
ALTER TABLE foo row_format=TOKUDB_FAST; ALTER TABLE foo row_format=TOKUDB_FAST;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
ALTER TABLE foo row_format=TOKUDB_SMALL; ALTER TABLE foo row_format=TOKUDB_SMALL;
SHOW CREATE TABLE foo; SHOW CREATE TABLE foo;
select * from foo;
# #
# Trying to change row format along with another # Trying to change row format along with another
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment