mariadb/mysql-test/suite/rpl/r/semisync_future-7591.result
2023-12-18 11:19:04 +01:00

27 lines
869 B
Text

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_sql.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