mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 05:52:27 +01:00
d8aa83b270
Bug#37531, Bug#36941, Bug#36941, Bug#36942, Bug#38185. Also include test case from Bug 34300 which was left out from earlier snapshot (5.1-ss2387). Also include fix for Bug #29507, "TRUNCATE shows to many rows effected", since the fix for Bug 37531 depends on it.
7 lines
287 B
Text
7 lines
287 B
Text
drop table if exists t1;
|
|
create table t1(a int not null auto_increment primary key) engine=innodb;
|
|
insert into t1 set a = -1;
|
|
optimize table t1;
|
|
Table Op Msg_type Msg_text
|
|
test.t1 optimize note Table does not support optimize, doing recreate + analyze instead
|
|
test.t1 optimize status OK
|