mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
23 lines
694 B
Text
23 lines
694 B
Text
include/master-slave.inc
|
|||
[connection master]
|
|||
CREATE TABLE t1 ( a int ) ENGINE=InnoDB;
|
|||
BEGIN;
|
|||
INSERT INTO t1 VALUES (1);
|
|||
OPTIMIZE TABLE t1;
|
|||
Table Op Msg_type Msg_text
|
|||
test.t1 optimize note Table does not support optimize, doing recreate + analyze instead
|
|||
Update results of test after merge of bugfix
mysql-test/r/rpl_failed_optimize.result:
Update results
|
test.t1 optimize error Lock wait timeout exceeded; try restarting transaction
|
||
test.t1 optimize status Operation failed
|
|||
Warnings:
|
|||
Error 1205 Lock wait timeout exceeded; try restarting transaction
|
|||
OPTIMIZE TABLE non_existing;
|
|||
Table Op Msg_type Msg_text
|
|||
test.non_existing optimize Error Table 'test.non_existing' doesn't exist
|
|||
|
test.non_existing optimize status Operation failed
|
||
select * from t1;
|
|||
a
|
|||
1
|
|||
commit;
|
|||
drop table t1;
|
|||
include/rpl_end.inc
|