Fixed the incorrectly merged rpl.rpl_show_slave_running test in
mysql-trunk-merge (by copying the .result/.test files from mysql-pe).
This commit is contained in:
parent
7ac059ba8f
commit
bbe6b90b52
@ -14,11 +14,11 @@ Slave_running OFF
|
|||||||
Slave_IO_Running= No
|
Slave_IO_Running= No
|
||||||
Slave_SQL_Running= No
|
Slave_SQL_Running= No
|
||||||
start slave io_thread;
|
start slave io_thread;
|
||||||
Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF NO NO in three following queries
|
Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF Connecting NO in three following queries
|
||||||
SHOW STATUS LIKE 'Slave_running';
|
SHOW STATUS LIKE 'Slave_running';
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
Slave_running OFF
|
Slave_running OFF
|
||||||
Slave_IO_Running= No
|
Slave_IO_Running= Connecting
|
||||||
Slave_SQL_Running= No
|
Slave_SQL_Running= No
|
||||||
SET DEBUG_SYNC='now SIGNAL signal.io_thread_let_running';
|
SET DEBUG_SYNC='now SIGNAL signal.io_thread_let_running';
|
||||||
Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF YES NO in three following queries
|
Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF YES NO in three following queries
|
||||||
|
@ -8,12 +8,12 @@ source include/have_debug.inc;
|
|||||||
source include/have_debug_sync.inc;
|
source include/have_debug_sync.inc;
|
||||||
|
|
||||||
connection slave;
|
connection slave;
|
||||||
|
|
||||||
SET DEBUG_SYNC= 'RESET';
|
SET DEBUG_SYNC= 'RESET';
|
||||||
source include/stop_slave.inc;
|
source include/stop_slave.inc;
|
||||||
let $debug_saved= `select @@global.debug`;
|
let $debug_saved= `select @@global.debug`;
|
||||||
set global debug= 'd,dbug.before_get_running_status_yes'; # to block due-started IO
|
set global debug= 'd,dbug.before_get_running_status_yes'; # to block due-started IO
|
||||||
|
|
||||||
|
|
||||||
# Test 1. Slave is stopped
|
# Test 1. Slave is stopped
|
||||||
|
|
||||||
--echo Slave_running, Slave_IO_Running, Slave_SQL_Running, must be OFF, NO, NO in three following queries
|
--echo Slave_running, Slave_IO_Running, Slave_SQL_Running, must be OFF, NO, NO in three following queries
|
||||||
@ -24,8 +24,8 @@ echo Slave_IO_Running= $status;
|
|||||||
let $status= query_get_value("show slave status", Slave_SQL_Running, 1);
|
let $status= query_get_value("show slave status", Slave_SQL_Running, 1);
|
||||||
echo Slave_SQL_Running= $status;
|
echo Slave_SQL_Running= $status;
|
||||||
|
|
||||||
# Test 2. The slave IO thread is started but not yet got connected to master
|
# Test 2. The slave IO thread is started but not yet got connected to master
|
||||||
# and SQL thread is not started
|
# and SQL thread is not started
|
||||||
|
|
||||||
start slave io_thread;
|
start slave io_thread;
|
||||||
|
|
||||||
@ -35,7 +35,7 @@ start slave io_thread;
|
|||||||
# have three: OFF,Connecting,ON.
|
# have three: OFF,Connecting,ON.
|
||||||
# Hence, 5.1 must display OFF NO NO where as 5.1+ OFF Connecting NO
|
# Hence, 5.1 must display OFF NO NO where as 5.1+ OFF Connecting NO
|
||||||
#
|
#
|
||||||
--echo Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF NO NO in three following queries
|
--echo Slave_running, Slave_IO_Running, Slave_SQL_Running must be OFF Connecting NO in three following queries
|
||||||
|
|
||||||
SHOW STATUS LIKE 'Slave_running';
|
SHOW STATUS LIKE 'Slave_running';
|
||||||
let $status= query_get_value("show slave status", Slave_IO_Running, 1);
|
let $status= query_get_value("show slave status", Slave_IO_Running, 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user