mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
Change of user interface to be more logical and more in line with expectations to work similar to old-style replication. User can now explicitly choose in CHANGE MASTER whether binlog position is taken into account (master_gtid_pos=current_pos) or not (master_gtid_pos= slave_pos) when slave connects to master. @@gtid_pos is replaced by three separate variables @@gtid_slave_pos (can be set by user, replicated GTIDs only), @@gtid_binlog_pos (read only), and @@gtid_current_pos (a combination of the two, most recent GTID within each domain). mysql.rpl_slave_state is renamed to mysql.gtid_slave_pos to match. This fixes MDEV-4474.
31 lines
905 B
PHP
31 lines
905 B
PHP
#
|
|
# The include file runs RESET ALL for every replication connection
|
|
# currently present in SHOW FULL SLAVE STATUS output on the server,
|
|
# and also runs RESET MASTER on the same server.
|
|
#
|
|
|
|
--let $include_filename= reset_master_slave.inc
|
|
--source include/begin_include_file.inc
|
|
|
|
--disable_query_log
|
|
--disable_result_log
|
|
--disable_warnings
|
|
--let $default_master = `SELECT @@default_master_connection`
|
|
--let $con_name = query_get_value(show all slaves status, Connection_name, 1)
|
|
while ($con_name != 'No such row')
|
|
{
|
|
eval set default_master_connection = '$con_name';
|
|
stop slave;
|
|
--source include/wait_for_slave_to_stop.inc
|
|
reset slave all;
|
|
--let $con_name = query_get_value(show all slaves status, Connection_name, 1)
|
|
}
|
|
|
|
--error 0,ER_FLUSH_MASTER_BINLOG_CLOSED
|
|
reset master;
|
|
set global gtid_slave_pos='';
|
|
eval set default_master_connection = '$default_master';
|
|
|
|
--source include/end_include_file.inc
|
|
|