Current Path : /home/usr.opt/mysql57/mysql-test/suite/rpl/r/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //home/usr.opt/mysql57/mysql-test/suite/rpl/r/rpl_row_4_bytes.result |
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] drop database if exists mysqltest1; create database mysqltest1; use mysqltest1; CREATE TABLE t1 (a char(3)); CREATE TABLE t2 (a char(3)); insert into t1 values("ANN"); insert into t1 values("GUI"); insert into t2 values("LIL"); insert into t2 values("ABE"); insert into t2 values("ANG"); include/sync_slave_sql_with_master.inc use mysqltest1; select * from t1 order by a; a ANN GUI select * from t2 order by a; a ABE ANG LIL DROP DATABASE mysqltest1; include/sync_slave_sql_with_master.inc include/rpl_end.inc