1include/master-slave.inc 2Warnings: 3Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. 4Note #### 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. 5[connection master] 6CREATE TABLE char128_utf8 (i1 INT NOT NULL, c CHAR(128) CHARACTER SET utf8 NOT NULL, i2 INT NOT NULL); 7INSERT INTO char128_utf8 VALUES ( 1, "123", 1 ); 8SELECT * FROM char128_utf8; 9i1 c i2 101 123 1 11include/sync_slave_sql_with_master.inc 12SELECT * FROM char128_utf8; 13i1 c i2 141 123 1 15DROP TABLE char128_utf8; 16include/sync_slave_sql_with_master.inc 17include/rpl_end.inc 18