mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/db768.result
2016-04-26 20:56:25 +02:00

10 lines
239 B
Text

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;