Commit 340bc1bd authored by Rich Prohaska's avatar Rich Prohaska

DB-768 test case for 5.6 crash

parent a3aa1def
set default_storage_engine='tokudb';
drop table if exists t;
create table t (id int primary key);
set autocommit=OFF;
lock tables t write;
optimize table t;
Table Op Msg_type Msg_text
test.t optimize status OK
unlock tables;
drop table t;
# test case for DB-768
source include/have_tokudb.inc;
set default_storage_engine='tokudb';
disable_warnings;
drop table if exists t;
enable_warnings;
create table t (id int primary key);
set autocommit=OFF;
lock tables t write;
optimize table t;
unlock tables;
drop table t;
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