mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
5da083ef67
Fix: === Backport Bug#11756194 to mysql-5.5. slave breaks if 'drop database' fails on master and mismatched tables on slave. 'DROP TABLE <deleted tables>' was binlogged when 'DROP DATABASE' failed and at least one table was deleted from the database. The log event would lead slave SQL thread stop if some of the tables did not exist on slave. After this patch, It is always binlogged with 'IF EXISTS' option.
16 lines
637 B
Text
16 lines
637 B
Text
include/master-slave.inc
|
|
[connection master]
|
|
CREATE DATABASE IF NOT EXISTS db1;
|
|
CREATE DATABASE IF NOT EXISTS db2;
|
|
use db1;
|
|
CREATE TABLE a(id INT);
|
|
CREATE VIEW v AS SELECT * FROM a;
|
|
CREATE TABLE table_father(id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(20)) ENGINE=INNODB;
|
|
use db2;
|
|
CREATE TABLE table_child(id INT PRIMARY KEY, info VARCHAR(20), father_id INT) ENGINE=INNODB;
|
|
ALTER TABLE table_child ADD CONSTRAINT aaa FOREIGN KEY (father_id) REFERENCES db1.table_father(id);
|
|
DROP DATABASE db1;
|
|
ERROR 23000: Cannot delete or update a parent row: a foreign key constraint fails
|
|
DROP DATABASE db2;
|
|
DROP DATABASE db1;
|
|
include/rpl_end.inc
|