1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00
Files
mariadb/storage/tokudb/mysql-test/tokudb_mariadb/r/optimize.result
Sergei Golubchik 9a3b9a5416 tokudb test suites
2013-09-09 13:59:38 +02:00

14 lines
272 B
Plaintext

create table t1 (a int) engine=tokudb;
insert t1 values (1),(2),(3);
set debug_sync='before_admin_operator_func WAIT_FOR go';
OPTIMIZE TABLE t1;
select * from t1;
a
1
2
3
set debug_sync='now SIGNAL go';
Table Op Msg_type Msg_text
test.t1 optimize status OK
drop table t1;