From a84ebecc48c75d67fa82c268e3979fbb1085c10f Mon Sep 17 00:00:00 2001 From: Rich Prohaska Date: Sat, 19 Oct 2013 06:22:50 -0400 Subject: [PATCH] #131 make fast and small aliases for quicklz and lzma. fix tests. --- .../suite/tokudb.alter_table/r/hot_row_format_alter.result | 4 ++-- mysql-test/suite/tokudb.alter_table/r/row_format_alter.result | 4 ++-- mysql-test/suite/tokudb.bugs/r/5695.result | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result b/mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result index 607646e3120..ab4bce0156e 100644 --- a/mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result +++ b/mysql-test/suite/tokudb.alter_table/r/hot_row_format_alter.result @@ -69,7 +69,7 @@ foo CREATE TABLE `foo` ( `a` int(11) NOT NULL AUTO_INCREMENT, `b` int(11) DEFAULT NULL, PRIMARY KEY (`a`) -) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_FAST +) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_QUICKLZ select * from foo; a b 1 11 @@ -82,7 +82,7 @@ foo CREATE TABLE `foo` ( `a` int(11) NOT NULL AUTO_INCREMENT, `b` int(11) DEFAULT NULL, PRIMARY KEY (`a`) -) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_SMALL +) ENGINE=TokuDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_LZMA select * from foo; a b 1 11 diff --git a/mysql-test/suite/tokudb.alter_table/r/row_format_alter.result b/mysql-test/suite/tokudb.alter_table/r/row_format_alter.result index be447ca5c48..7ab6b27fd6f 100644 --- a/mysql-test/suite/tokudb.alter_table/r/row_format_alter.result +++ b/mysql-test/suite/tokudb.alter_table/r/row_format_alter.result @@ -81,7 +81,7 @@ foo CREATE TABLE `foo` ( `c5` int(11) NOT NULL, `c6` int(11) NOT NULL, PRIMARY KEY (`c1`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_FAST +) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_QUICKLZ ALTER TABLE foo row_format=TOKUDB_SMALL, add column c7 int not null; SELECT CREATE_OPTIONS FROM INFORMATION_SCHEMA.TABLES WHERE (table_name LIKE 'foo'); @@ -98,5 +98,5 @@ foo CREATE TABLE `foo` ( `c6` int(11) NOT NULL, `c7` int(11) NOT NULL, PRIMARY KEY (`c1`) -) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_SMALL +) ENGINE=TokuDB DEFAULT CHARSET=latin1 ROW_FORMAT=TOKUDB_LZMA DROP TABLE foo; diff --git a/mysql-test/suite/tokudb.bugs/r/5695.result b/mysql-test/suite/tokudb.bugs/r/5695.result index 9493052c247..9ae4b1b7986 100644 --- a/mysql-test/suite/tokudb.bugs/r/5695.result +++ b/mysql-test/suite/tokudb.bugs/r/5695.result @@ -3,12 +3,12 @@ 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_small +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_fast +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';