mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
10 lines
239 B
Text
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;
|