1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
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 connection metadata repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START REPLICA; see the 'START REPLICA Syntax' in the MySQL Manual for more information.
[connection master]
# Adding debug point 'remove_replica_load_file_before_write' to @@GLOBAL.debug
create table t1(a int not null auto_increment, b int, primary key(a)) engine=innodb;
start transaction;
insert into t1(b) values (1);
insert into t1(b) values (2);
load data infile '../../std_data/rpl_loaddata.dat' into table t1;
commit;
call mtr.add_suppression("LOAD DATA INFILE in the replica SQL Thread can only read from --replica-load-tmpdir");
call mtr.add_suppression("The MySQL server is running with the --replica-load-tmpdir option so it cannot execute this statement.*Error_code: MY-001290");
include/wait_for_slave_sql_error.inc [errno=29, 13, 1290]
drop table t1;
include/sync_slave_io_with_master.inc
include/stop_slave_io.inc
RESET SLAVE;
Warnings:
Warning 1287 'RESET SLAVE' is deprecated and will be removed in a future release. Please use RESET REPLICA instead
drop table t1;
call mtr.add_suppression("Replica: Can't get stat of .*");
call mtr.add_suppression("Replica SQL for channel '': .*Error .Can.t get stat of.* Error_code: MY-000013");
call mtr.add_suppression("Replica.*: File.* not found.*");
call mtr.add_suppression("Replica.*: .*Error .File.* not found.* Error_code: MY-000029");
call mtr.add_suppression("The replica coordinator and worker threads are stopped, possibly leaving data in inconsistent state");
# Removing debug point 'remove_replica_load_file_before_write' from @@GLOBAL.debug
include/rpl_end.inc
|