mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
0d82c585aa
Backporting the patch from BUG#11753489 into mysql-5.5 as it is already in mysql-trunk but not in mysql-5.5.
15 lines
365 B
Text
15 lines
365 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CREATE TABLE t1 ( a int ) ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (1);
|
|
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
|