MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
ndb_master-slave_2ch_end.inc
1 # ==== Purpose ====
2 #
3 # Clean up replication configuration after using a 2ch
4 # setup.
5 # We need to explicitly reset the IGNORE_SERVER_IDS parameters
6 # on all Servers to avoid testcase check errors.
7 #
8 # ==== Usage ====
9 #
10 # [--let $rpl_debug= 1]
11 # --source suite/ndb_rpl/ndb_master-slave_2ch_end.inc
12 #
13 # Parameters:
14 # $rpl_debug
15 # See include/master-slave.inc
16 
17 --source include/rpl_stop_slaves.inc
18 --connection master
19 CHANGE MASTER TO IGNORE_SERVER_IDS= ();
20 --connection master1
21 CHANGE MASTER TO IGNORE_SERVER_IDS= ();
22 --connection slave
23 CHANGE MASTER TO IGNORE_SERVER_IDS= ();
24 --connection slave1
25 CHANGE MASTER TO IGNORE_SERVER_IDS= ();
26 --source include/rpl_start_slaves.inc
27 
28 --source include/rpl_end.inc