mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
MDEV-6720 - enable connection log in mysqltest by default
This commit is contained in:
@@ -1,12 +1,16 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
call mtr.add_suppression("Slave I/O: The slave I/O thread stops because a fatal error is encountered when it tried to SET @master_binlog_checksum");
|
||||
connection master;
|
||||
create table t1(n int);
|
||||
connection slave;
|
||||
select * from t1;
|
||||
n
|
||||
stop slave sql_thread;
|
||||
connection master;
|
||||
insert into t1 values(1);
|
||||
insert into t1 values(2);
|
||||
connection slave;
|
||||
include/wait_for_slave_param.inc [Read_Master_Log_Pos]
|
||||
include/stop_slave.inc
|
||||
change master to master_user='root';
|
||||
@@ -15,5 +19,7 @@ select * from t1;
|
||||
n
|
||||
1
|
||||
2
|
||||
connection master;
|
||||
drop table t1;
|
||||
connection slave;
|
||||
include/rpl_end.inc
|
||||
|
||||
Reference in New Issue
Block a user