Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/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 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/r/rpl_row_corruption.result |
include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] CREATE TABLE t1_11753004 (c1 INT); CREATE TABLE t2_11753004 (c1 INT); INSERT INTO t1_11753004 VALUES (1); INSERT INTO t2_11753004 VALUES (2); include/sync_slave_sql_with_master.inc call mtr.add_suppression(".*Found table map event mapping table id 0 which was already mapped but with different settings.*"); call mtr.add_suppression("The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state"); include/stop_slave.inc SET @save_debug= @@global.debug; SET GLOBAL debug="+d,inject_tblmap_same_id_maps_diff_table"; include/start_slave.inc UPDATE t1_11753004, t2_11753004 SET t1_11753004.c1=3, t2_11753004.c1=4 WHERE t1_11753004.c1=1 OR t2_11753004.c1=2; include/wait_for_slave_sql_error.inc [errno=1593 ] include/stop_slave_io.inc SET GLOBAL debug="-d,inject_tblmap_same_id_maps_diff_table"; include/start_slave.inc include/rpl_reset.inc DROP TABLE t1_11753004, t2_11753004; include/sync_slave_sql_with_master.inc include/stop_slave.inc SET GLOBAL debug="+d,inject_tblmap_same_id_maps_diff_table"; include/start_slave.inc include/rpl_reset.inc CREATE TABLE t1_11753004 (c1 INT); CREATE TABLE t2_11753004_ign (c1 INT); INSERT INTO t1_11753004 VALUES (1); INSERT INTO t2_11753004_ign VALUES (2); UPDATE t1_11753004, t2_11753004_ign SET t1_11753004.c1=3, t2_11753004_ign.c1=4 WHERE t1_11753004.c1=1 OR t2_11753004_ign.c1=2; include/sync_slave_sql_with_master.inc CREATE TABLE t1 (c1 INT); CREATE TABLE t2 (c1 INT); INSERT INTO t1 VALUES (1); INSERT INTO t2 VALUES (1); BINLOG ' SOgWTg8BAAAAbgAAAHIAAAAAAAQANS42LjMtbTUtZGVidWctbG9nAAAAAAAAAAAAAAAAAAAAAAAA AAAAAAAAAAAAAAAAAABI6BZOEzgNAAgAEgAEBAQEEgAAVgAEGggAAAAICAgCAAAAAAVAYI8= '/*!*/; SET GLOBAL debug="+d,inject_tblmap_same_id_maps_diff_table"; BINLOG ' SOgWThMBAAAAKQAAAAYDAAAAAEIAAAAAAAEABHRlc3QAAnQxAAEDAAE= SOgWThMBAAAAKQAAAC8DAAAAAEMAAAAAAAEABHRlc3QAAnQyAAEDAAE= SOgWThgBAAAAKAAAAFcDAAAAAEIAAAAAAAAAAf///gEAAAD+AwAAAA== SOgWThgBAAAAKAAAAH8DAAAAAEMAAAAAAAEAAf///gEAAAD+BAAAAA== '/*!*/; ERROR HY000: Fatal error: Found table map event mapping table id 0 which was already mapped but with different settings. DROP TABLE t1,t2; SET GLOBAL debug="-d,inject_tblmap_same_id_maps_diff_table"; DROP TABLE t1_11753004; DROP TABLE t2_11753004_ign; include/sync_slave_sql_with_master.inc SET GLOBAL debug= @save_debug; include/rpl_end.inc