Current Path : /usr/opt/mysql57/mysql-test/suite/ndb_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 : //usr/opt/mysql57/mysql-test/suite/ndb_rpl/r/ndb_rpl_apply_status.result |
select * from mysql.ndb_apply_status; 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] *** on slave there should be zero rows *** select count(*) from mysql.ndb_apply_status; count(*) 0 create table t1 (a int key, b int) engine ndb; insert into t1 values (1,1); *** on master it should be empty *** select * from mysql.ndb_apply_status where server_id <> 0; server_id epoch log_name start_pos end_pos *** on slave there should be one row *** select count(*) from mysql.ndb_apply_status; count(*) 1 drop table t1; include/rpl_end.inc