Commit 88b6565e authored by Rich Prohaska's avatar Rich Prohaska

Tokutek/mysql56#46 test case for optimize of a temporary tokudb table

parent 466b63aa
drop table if exists t;
create temporary table t (x int) engine=tokudb;
optimize table t;
Table Op Msg_type Msg_text
test.t optimize status OK
drop table t;
# test that optimize temporary tokudb table works
source include/have_tokudb.inc;
disable_warnings;
drop table if exists t;
enable_warnings;
create temporary table t (x int) engine=tokudb;
# this crashes mysql_admin since temporary tables apparently are not locked
optimize table t;
# cleanup
drop table t;
\ No newline at end of file
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