After-merge fix for rocksdb

Adjust a test for the merge commit e6bdf77e4be48750c4808a09af197ed91fd69a61
This commit is contained in:
Marko Mäkelä 2019-04-29 09:27:32 +03:00
parent 589dc00d94
commit 2f1f02817e
2 changed files with 3 additions and 0 deletions

View File

@ -1,4 +1,5 @@
# restart
set use_stat_tables= 'COMPLEMENTARY';
CREATE TABLE t0 (id int PRIMARY KEY, a int, INDEX ix_a (a)) engine=rocksdb;
insert into t0 values (0, 0),(1, 1),(2, 2),(3, 3),(4, 4),
(5, 4),(6, 4),(7, 4),(8, 4),(9, 4);

View File

@ -2,6 +2,8 @@
--source include/restart_mysqld.inc
set use_stat_tables= 'COMPLEMENTARY';
# Test memtable cardinality statistics
CREATE TABLE t0 (id int PRIMARY KEY, a int, INDEX ix_a (a)) engine=rocksdb;