mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
18 lines
422 B
Text
18 lines
422 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CREATE TABLE t1 ( a int ) ENGINE=InnoDB;
|
|
BEGIN;
|
|
INSERT INTO t1 VALUES (1);
|
|
connection master1;
|
|
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
|
|
connection slave;
|
|
connection master;
|
|
select * from t1;
|
|
a
|
|
1
|
|
commit;
|
|
drop table t1;
|
|
include/rpl_end.inc
|