mirror of
https://github.com/MariaDB/server.git
synced 2025-10-22 19:52:58 +03:00
31 lines
882 B
PHP
31 lines
882 B
PHP
# ==== Purpose ====
|
|
#
|
|
# Waits until both the IO and SQL threads of the current connection
|
|
# have stopped, or until a timeout is reached.
|
|
#
|
|
# ==== Usage ====
|
|
#
|
|
# source include/wait_for_slave_to_stop.inc;
|
|
#
|
|
# Parameters to this macro are $slave_timeout and
|
|
# $master_connection. See wait_for_slave_param.inc for
|
|
# descriptions.
|
|
|
|
# if server has not used CHANGE MASTER to initiate slave, SHOW SLAVE
|
|
# STATUS will return an empty set.
|
|
let $_slave_io_running= query_get_value("SHOW SLAVE STATUS", Slave_IO_Running, 1);
|
|
if ($_slave_io_running != No such row)
|
|
{
|
|
let $slave_error_message= Failed while waiting for slave to stop;
|
|
|
|
let $slave_param= Slave_IO_Running;
|
|
let $slave_param_value= No;
|
|
source include/wait_for_slave_param.inc;
|
|
|
|
let $slave_param= Slave_SQL_Running;
|
|
let $slave_param_value= No;
|
|
source include/wait_for_slave_param.inc;
|
|
|
|
let $slave_error_message= ;
|
|
}
|