Commit 783faab4 authored by Rich Prohaska's avatar Rich Prohaska

Tokutek/mysql56#71 run mysql suite tokudb without tokudb as the default storage engine

parent 94cb0748
set default_storage_engine='tokudb';
drop table if exists t2970;
Warnings:
Note 1051 Unknown table 't2970'
......
create table tc (a int, b int, c int, primary key(a), key(b)) partition by hash(a) partitions 2;
create table tc (a int, b int, c int, primary key(a), key(b)) engine=tokudb partition by hash(a) partitions 2;
select dictionary_name from information_schema.tokudb_file_map;
dictionary_name
./test/ta#P#p0-key-b
......
set default_storage_engine='tokudb';
create table tc (id int, x int, primary key(id), key(x));
select dictionary_name from information_schema.tokudb_file_map;
dictionary_name
......
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