Server IP : 172.67.216.182 / Your IP : 162.158.88.81 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/rpl/t/ |
Upload File : |
# ==== Purpose ==== # # Verify cross-version replication from an old master to the up-to-date slave # # ==== Implementation ==== # # Feed to the slave server a binlog recorded on an old version master # via setting up slave-to-slave replication. The latter is done by means of # the opt file and include/setup_fake_relay_log.inc. # The master's binlog is treated as a relay log that the SQL thread executes. # --source include/not_group_replication_plugin.inc --source include/not_gtid_enabled.inc --source include/master-slave.inc # The test is disabled for windows due to # Bug #42879 CHANGE MASTER RELAY_LOG_FILE=path fails on windows # Todo: release it from not_windows --source include/not_windows.inc # EXEC_LOAD_EVENT of 4.1 binlog can't be supported -- source include/not_mts_slave_parallel_workers.inc # # Bug#31240 load data infile replication between (4.0 or 4.1) and 5.1 fails # --echo ==== Initialize ==== --connection slave --disable_query_log # The binlog contains the function RAND which is unsafe. CALL mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); --enable_query_log --source include/stop_slave.inc RESET SLAVE; # the relay log contains create t1, t3 tables and load data infile --let $fake_relay_log = $MYSQL_TEST_DIR/suite/binlog/std_data/binlog_old_version_4_1.000001 --source include/setup_fake_relay_log.inc --echo ==== Test ==== start slave sql_thread; --let $slave_param = Exec_Master_Log_Pos # end_log_pos of the last event of the relay log --let $slave_param_value = 149436 --source include/wait_for_slave_param.inc --echo ==== a prove that the fake has been processed successfully ==== SELECT COUNT(*) - 17920 as zero FROM t3; --echo ==== Clean up ==== --source include/stop_slave_sql.inc --source include/cleanup_fake_relay_log.inc drop table t1, t3; --let $rpl_only_running_threads= 1 --source include/rpl_end.inc