mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
a334c72371
mysql-test/r/rpl_ignore_table.result: New result file mysql-test/t/rpl_ignore_table-slave.opt: New option file mysql-test/t/rpl_ignore_table.test: New test for ignored table and multi-update
16 lines
375 B
Text
16 lines
375 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
**** Test case for BUG#16487 ****
|
|
**** Master ****
|
|
CREATE TABLE test.t4 (a int);
|
|
CREATE TABLE test.t1 (a int);
|
|
UPDATE test.t4 NATURAL JOIN test.t1 SET t1.a=5;
|
|
**** Slave ****
|
|
SELECT * FROM t4;
|
|
a
|
|
DROP TABLE t1;
|
|
DROP TABLE t4;
|