Server IP : 172.67.216.182 / Your IP : 162.158.190.13 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 : |
-- source include/not_ndb_default.inc --source include/not_group_replication_plugin.inc -- source include/have_binlog_format_row.inc --source include/not_gtid_enabled.inc --source include/not_mts_slave_parallel_workers.inc --source include/master-slave.inc ############################################################################## # The test is dependent on binlog positions. The test is divided into two # sections. The first section checks START SLAVE UNTIL MASTER_LOG_FILE = # 'log_name', MASTER_LOG_POS = log_pos followed by a couple of failure # scenarios. The second section checks START SLAVE UNTIL RELAY_LOG_FILE = # 'log_name', RELAY_LOG_POS = log_pos. ############################################################################## # Create some events on master connection master; CREATE TABLE t1(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY); INSERT INTO t1 VALUES (1),(2),(3),(4); # Save master log position before query DROP TABLE t1 let $master_pos_drop_t1= query_get_value(SHOW MASTER STATUS, Position, 1); let $master_log_file= query_get_value(SHOW MASTER STATUS, File, 1); DROP TABLE t1; # Save master log position for query DROP TABLE t1 save_master_pos; # Save master log position for query CREATE TABLE t2 let $master_pos_create_t2= query_get_value(SHOW MASTER STATUS, Position, 1); CREATE TABLE t2(n INT NOT NULL AUTO_INCREMENT PRIMARY KEY); #show binlog events; INSERT INTO t2 VALUES (1),(2); # Save master log position for query INSERT INTO t2 VALUES (1),(2); let $master_pos_insert1_t2= query_get_value(SHOW MASTER STATUS, Position, 1); INSERT INTO t2 VALUES (3),(4); DROP TABLE t2; # Save master log position for query DROP TABLE t2; let $master_pos_drop_t2= query_get_value(SHOW MASTER STATUS, Position, 1); --source include/sync_slave_sql_with_master.inc #show binlog events; --source include/stop_slave.inc # Reset slave. RESET SLAVE; --disable_query_log --replace_column 2 #### eval CHANGE MASTER TO MASTER_USER='root', MASTER_CONNECT_RETRY=1, MASTER_HOST='127.0.0.1', MASTER_PORT=$MASTER_MYPORT; --enable_query_log # Try to replicate all queries until drop of t1 connection slave; --replace_result $master_pos_drop_t1 master_pos_drop_t1 eval START SLAVE UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=$master_pos_drop_t1; --source include/wait_for_slave_sql_to_stop.inc # Here table should be still not deleted SELECT * FROM t1; --let $slave_param= Exec_Master_Log_Pos --let $slave_param_value= $master_pos_drop_t1 --source include/check_slave_param.inc # This should fail right after start --replace_result 291 MASTER_LOG_POS START SLAVE UNTIL MASTER_LOG_FILE='master-no-such-bin.000001', MASTER_LOG_POS=291; --source include/wait_for_slave_sql_to_stop.inc # again this table should be still not deleted SELECT * FROM t1; --let $slave_param= Exec_Master_Log_Pos --let $slave_param_value= $master_pos_drop_t1 --source include/check_slave_param.inc # clean up START SLAVE; --source include/wait_for_slave_to_start.inc connection master; --source include/sync_slave_sql_with_master.inc --source include/stop_slave.inc # This should stop immediately as we are already there echo START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=master_pos_create_t2; --disable_query_log eval START SLAVE SQL_THREAD UNTIL MASTER_LOG_FILE='$master_log_file', MASTER_LOG_POS=$master_pos_create_t2; --enable_query_log let $slave_param= Until_Log_Pos; let $slave_param_value= $master_pos_create_t2; --source include/wait_for_slave_param.inc --source include/wait_for_slave_sql_to_stop.inc # here the sql slave thread should be stopped --let $slave_param= Exec_Master_Log_Pos --let $slave_param_value= $master_pos_drop_t2 --source include/check_slave_param.inc #testing various error conditions --replace_result 561 MASTER_LOG_POS --error 1277 START SLAVE UNTIL MASTER_LOG_FILE='master-bin', MASTER_LOG_POS=561; --replace_result 561 MASTER_LOG_POS 12 RELAY_LOG_POS --error 1277 START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=561, RELAY_LOG_POS=12; --error 1277 START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001'; --error 1277 START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000009'; --replace_result 561 MASTER_LOG_POS --error 1277 START SLAVE UNTIL RELAY_LOG_FILE='slave-relay-bin.000002', MASTER_LOG_POS=561; --replace_result 740 MASTER_LOG_POS START SLAVE UNTIL MASTER_LOG_FILE='master-bin.000001', MASTER_LOG_POS=740; --source include/stop_slave.inc RESET SLAVE; --source include/start_slave.inc ############################################################################## # The second section - checks START SLAVE UNTIL RELAY_LOG_FILE =# 'log_name', # RELAY_LOG_POS = log_pos. This section of the test does the following: # 1) At master, create a table and inserts a value. Let slave replicate this. # 2) Stop slave sql thread. # 3) Insert some more values at master. Note that io thread copies this insert # 4) Use start slave until to start the sql thread and check if it # stops at the correct position. ############################################################################## --source include/rpl_reset.inc --connection master CREATE TABLE t1 (a INT); INSERT INTO t1 VALUES (1); --source include/sync_slave_sql_with_master.inc --source include/stop_slave_sql.inc --connection master INSERT INTO t1 VALUES (2); --let $master_log_pos= query_get_value(SHOW MASTER STATUS, Position, 1) INSERT INTO t1 VALUES (3); --source include/sync_slave_io_with_master.inc --let $relay_log_file= query_get_value(SHOW SLAVE STATUS, Relay_Log_File,1) --source include/get_relay_log_pos.inc --disable_query_log --eval start slave until relay_log_file='$relay_log_file', relay_log_pos=$relay_log_pos --enable_query_log --source include/wait_for_slave_sql_to_stop.inc --let $assert_cond= COUNT(*) = 2 FROM t1 --let $assert_text= table t1 should have two rows. --source include/assert.inc #cleanup --source include/start_slave.inc --connection master DROP TABLE t1; --source include/sync_slave_sql_with_master.inc --source include/rpl_end.inc