summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb/r/mvcc-34.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2014-03-26 09:33:54 +0100
committerSergei Golubchik <sergii@pisem.net>2014-03-26 09:33:54 +0100
commit525c3c243580824db18834e676eb0ce31600ff49 (patch)
tree42a44d6b0a6d65c700f0926a57e6197ae70aa3e8 /storage/tokudb/mysql-test/tokudb/r/mvcc-34.result
parent4574cf43b6626593825d1b3a1169e6de42f26bc8 (diff)
downloadmariadb-git-525c3c243580824db18834e676eb0ce31600ff49.tar.gz
TokuDB: make the default value for the table compression= attribute to come
from the variable @@session.tokudb_row_format
Diffstat (limited to 'storage/tokudb/mysql-test/tokudb/r/mvcc-34.result')
-rw-r--r--storage/tokudb/mysql-test/tokudb/r/mvcc-34.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/tokudb/mysql-test/tokudb/r/mvcc-34.result b/storage/tokudb/mysql-test/tokudb/r/mvcc-34.result
index e1795bbc832..d725bd33c95 100644
--- a/storage/tokudb/mysql-test/tokudb/r/mvcc-34.result
+++ b/storage/tokudb/mysql-test/tokudb/r/mvcc-34.result
@@ -11,7 +11,7 @@ foo CREATE TABLE `foo` (
`c` int(11) DEFAULT NULL,
PRIMARY KEY (`a`),
KEY `b` (`b`)
-) ENGINE=TokuDB DEFAULT CHARSET=latin1
+) ENGINE=TokuDB DEFAULT CHARSET=latin1 `compression`='tokudb_zlib'
insert into foo values (1,10,100),(2,20,200),(3,30,300),(4,40,400),(5,50,500),(6,60,600),(7,70,700),(8,80,800),(9,90,900);
begin;
select * from foo;