summaryrefslogtreecommitdiff
path: root/storage/tokudb/mysql-test/tokudb_mariadb/r/optimize.result
blob: ac7174137a83e1767070b0ca7531cd21b898818d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
connect  c1,localhost,root,,;
select * from t1;
a
1
2
3
set debug_sync='now SIGNAL go';
disconnect c1;
connection default;
Table	Op	Msg_type	Msg_text
test.t1	optimize	note	Table does not support optimize, doing recreate + analyze instead
test.t1	optimize	status	OK
drop table t1;
set debug_sync='reset';