Commit b5f8f311 authored by Zardosht Kasheff's avatar Zardosht Kasheff

[t:4428], fix tokudb.cluster.create_table

git-svn-id: file:///svn/mysql/tests/mysql-test@39541 c7de825b-a66e-492c-adef-691d508d4ae1
parent 37dfaa1f
SET STORAGE_ENGINE='tokudb';
DROP TABLE IF EXISTS t1;
set tokudb_prelock_empty=off;
create table t1(a int, b int, c int, d int, primary key(a), clustering key(b))engine=tokudb;
show create table t1;
Table Create Table
......
......@@ -5,6 +5,11 @@ SET STORAGE_ENGINE='tokudb';
DROP TABLE IF EXISTS t1;
--enable_warnings
#setting tokudb_prelock_empty to off
# so that after insertions, data is cached
# and row estimates are accurate
set tokudb_prelock_empty=off;
create table t1(a int, b int, c int, d int, primary key(a), clustering key(b))engine=tokudb;
show create table t1;
......
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