diff options
Diffstat (limited to 'mysql-test/suite/rpl/r/semisync_future-7591.result')
-rw-r--r-- | mysql-test/suite/rpl/r/semisync_future-7591.result | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/mysql-test/suite/rpl/r/semisync_future-7591.result b/mysql-test/suite/rpl/r/semisync_future-7591.result new file mode 100644 index 00000000..80414ac1 --- /dev/null +++ b/mysql-test/suite/rpl/r/semisync_future-7591.result @@ -0,0 +1,27 @@ +include/master-slave.inc +[connection master] +call mtr.add_suppression("Timeout waiting for reply of binlog*"); +create table t1 (i int); +set global rpl_semi_sync_master_enabled = ON; +connection slave; +include/stop_slave.inc +set global rpl_semi_sync_slave_enabled = ON; +change master to master_log_file='master-bin.000002', master_log_pos = 320, master_use_gtid=no; +start slave; +include/wait_for_slave_io_error.inc [errno=1236] +connection master; +insert into t1 values (1); +reset master; +connection slave; +include/stop_slave.inc +include/reset_slave.inc +Warnings: +Note 4190 RESET SLAVE is implicitly changing the value of 'Using_Gtid' from 'No' to 'Slave_Pos' +include/start_slave.inc +set global rpl_semi_sync_slave_enabled = OFF; +connection master; +drop table t1; +connection slave; +connection master; +set global rpl_semi_sync_master_enabled = OFF; +include/rpl_end.inc |