1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_bugs/r/db768.result
2016-04-26 20:56:25 +02:00

11 lines
239 B
Plaintext

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;