config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/binlog/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/opt/mysql57/mysql-test/suite/binlog/r/binlog_foreign_key_parent_table_deleted.result

call mtr.add_suppression("InnoDB: Foreign Key referenced table test.t1 not found for foreign table test.t2");
SET @saved_foreign_key_checks= @@session.foreign_key_checks;
SET @@session.foreign_key_checks= 1;
CREATE TABLE t1 (c1 INT PRIMARY KEY);
CREATE TABLE t2 (c1 INT PRIMARY KEY, FOREIGN KEY (c1) REFERENCES t1(c1));
INSERT INTO t1 VALUES (1);
INSERT INTO t2 VALUES (1);
SET @@session.foreign_key_checks= 0;
DROP TABLE t1;
SET @@session.foreign_key_checks= 1;
DELETE FROM t2 WHERE c1=1;
DROP TABLE t2;
SET @@session.foreign_key_checks= @saved_foreign_key_checks;

Man Man