1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
# ==== Purpose ====
#
# This test will call mysqldump client program to dump the slave channels
# configuration, showing that it is able to dump the configuration for
# other channels than the default one, regardless of having a default
# channel configured.
#
# Then, the test will apply the generated dump to ensure that it is
# syntactically correct.
#
# ==== Related Bugs and Worklogs ====
#
# BUG#21855705 MYSQLDUMP --DUMP-SLAVE DOES NOT WORK WITH MULTI-SOURCE
#
call mtr.add_suppression("Invalid .* username when attempting to connect to the source server");
# Multi source replication needs those repositories on TABLE
--let $save_mi_repo_type=`SELECT @@GLOBAL.master_info_repository`
SET GLOBAL master_info_repository='TABLE';
--let $save_rli_repo_type=`SELECT @@GLOBAL.relay_log_info_repository`
SET GLOBAL relay_log_info_repository='TABLE';
--echo #
--echo # 1. Without having a default channel configured
--echo #
--echo # Create two additional replication channels
CHANGE REPLICATION SOURCE TO SOURCE_HOST='127.0.0.1', SOURCE_LOG_FILE='binlog-ch1.000001', SOURCE_LOG_POS=4 FOR CHANNEL 'ch1';
CHANGE REPLICATION SOURCE TO SOURCE_HOST='127.0.0.1', SOURCE_LOG_FILE='binlog-ch2.000001', SOURCE_LOG_POS=4 FOR CHANNEL 'ch2';
--echo # Execute mysqldump with --dump-replica
--exec $MYSQL_DUMP_SLAVE --compact --dump-replica --set-gtid-purged=OFF test > $MYSQL_TMP_DIR/chm_1_dump.sql
--cat_file $MYSQL_TMP_DIR/chm_1_dump.sql
--echo # Execute mysql using the dump as input
--exec $MYSQL --force < $MYSQL_TMP_DIR/chm_1_dump.sql
--remove_file $MYSQL_TMP_DIR/chm_1_dump.sql
--let $slave_io_errno= convert_error(ER_REPLICA_FATAL_ERROR)
--source include/stop_slave.inc
--echo #
--echo # 2. With a default channel configured
--echo #
--echo # Setup the default replication channel
CHANGE REPLICATION SOURCE TO SOURCE_HOST='127.0.0.1', SOURCE_LOG_FILE="binlog-default.000001", SOURCE_LOG_POS=4 FOR CHANNEL '';
--echo # Execute mysqldump with --dump-replica
--replace_regex /MASTER_LOG_POS=[0-9]+/MASTER_LOG_POS=BINLOG_START/
--exec $MYSQL_DUMP_SLAVE --compact --dump-replica --set-gtid-purged=OFF test > $MYSQL_TMP_DIR/chm_2_dump.sql
--cat_file $MYSQL_TMP_DIR/chm_2_dump.sql
--echo # Execute mysql using the dump as input
--exec $MYSQL --force < $MYSQL_TMP_DIR/chm_2_dump.sql
--remove_file $MYSQL_TMP_DIR/chm_2_dump.sql
--source include/stop_slave.inc
# Clean up
RESET SLAVE ALL;
--disable_warnings
--replace_result $save_mi_repo_type SAVE_CM_REPO_TYPE
--eval SET @@global.master_info_repository='$save_mi_repo_type'
--replace_result $save_rli_repo_type SAVE_AM_REPO_TYPE
--eval SET @@global.relay_log_info_repository='$save_rli_repo_type'
--enable_warnings
|