24 lines
1.1 KiB
Plaintext
24 lines
1.1 KiB
Plaintext
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]
|
|
call mtr.add_suppression("Slave: Can\'t find record in \'user\' Error_code: 1032");
|
|
reset master;
|
|
CREATE TEMPORARY TABLE `t1`(`a` tinyint,`b` char(1))engine=myisam;
|
|
INSERT IGNORE INTO `t1` set `a`=128,`b`='128';
|
|
Warnings:
|
|
Warning 1264 Out of range value for column 'a' at row 1
|
|
Warning 1265 Data truncated for column 'b' at row 1
|
|
include/sync_slave_sql_with_master.inc
|
|
include/stop_slave.inc
|
|
include/start_slave.inc
|
|
INSERT IGNORE INTO `t1` set `a`=128,`b`='128';
|
|
Warnings:
|
|
Warning 1264 Out of range value for column 'a' at row 1
|
|
Warning 1265 Data truncated for column 'b' at row 1
|
|
include/sync_slave_sql_with_master.inc
|
|
DROP TABLE t1;
|
|
include/sync_slave_sql_with_master.inc
|
|
include/rpl_end.inc
|