Current Path : /usr/opt/mysql57/mysql-test/suite/binlog/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/binlog/r/binlog_server_id.result |
set global server_id=1; reset master; drop table if exists t1,t2,t3; RESET MASTER; set global server_id=3; create table t3 (a int); include/assert.inc [Server Ids must match (3 == 3)] RESET MASTER; set global server_id=2; create table t2 (a int); include/assert.inc [Server Ids must match (2 == 2)] RESET MASTER; set global server_id=1; create table t1 (a int); include/assert.inc [Server Ids must match (1 == 1)] set global server_id=1; drop table t1,t2,t3;