2004-06-03 23:17:18 +02:00
|
|
|
# This test checks that the slave I/O thread refuses to start if slave
|
|
|
|
# and master have the same server id (because this is a useless setup,
|
|
|
|
# and otherwise SHOW SLAVE STATUS shows progress but all queries are
|
|
|
|
# ignored, which has caught our customers), unless
|
|
|
|
# --replicate-same-server-id.
|
2004-04-28 18:24:46 +02:00
|
|
|
|
|
|
|
source include/master-slave.inc;
|
|
|
|
connection slave;
|
|
|
|
reset master;
|
2008-02-20 23:18:01 +02:00
|
|
|
|
2004-04-28 18:24:46 +02:00
|
|
|
# replicate ourselves
|
2008-07-10 18:09:39 +02:00
|
|
|
source include/stop_slave.inc;
|
2004-04-28 23:43:46 +02:00
|
|
|
--replace_result $SLAVE_MYPORT SLAVE_PORT
|
2004-04-28 18:24:46 +02:00
|
|
|
eval change master to master_port=$SLAVE_MYPORT;
|
2008-02-20 23:18:01 +02:00
|
|
|
start slave;
|
|
|
|
|
2008-07-18 14:53:16 +03:00
|
|
|
let $slave_param= Last_IO_Errno;
|
|
|
|
let $slave_param_value= 1593;
|
|
|
|
source include/wait_for_slave_param.inc;
|
2008-02-20 23:18:01 +02:00
|
|
|
--echo *** must be having the replicate-same-server-id IO thread error ***
|
2008-07-18 14:53:16 +03:00
|
|
|
let $last_io_errno= query_get_value("show slave status", Last_IO_Errno, 1);
|
|
|
|
let $last_io_error= query_get_value("show slave status", Last_IO_Error, 1);
|
|
|
|
echo Slave_IO_Errno= $last_io_errno;
|
|
|
|
echo Slave_IO_Error= $last_io_error;
|