Server IP : 172.67.216.182 / Your IP : 172.71.124.90 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 : |
############################################################################### # Bug#13963 SHOW SLAVE HOSTS is unreliable # # Slaves only appear in the output of SHOW SLAVE HOSTS when report-host option # is set. If an expected slave does not appear in the list, nobody knows # whether the slave does not connect or has started without the "report-host" # option. # # Remove the "Rpl_recovery_rank" column from SHOW SLAVE HOSTS, It is not # implemented. ####################################################################### --source include/not_group_replication_plugin.inc source include/master-slave.inc; connect (slave2,127.0.0.1,root,,test,$SLAVE_MYPORT2,); connection slave2; RESET SLAVE; --replace_result $MASTER_MYPORT MASTER_PORT --replace_column 2 #### --eval CHANGE MASTER TO master_host='127.0.0.1',master_port=$MASTER_MYPORT,master_user='root' START SLAVE IO_THREAD; source include/wait_for_slave_io_to_start.inc; connection master; let $show_statement= SHOW SLAVE HOSTS; let $field= Server_id; # 3 is server_id of slave2. let $condition= ='3'; source include/wait_show_condition.inc; --replace_column 3 'SLAVE_PORT' --replace_result $SLAVE_MYPORT SLAVE_PORT $DEFAULT_MASTER_PORT DEFAULT_PORT source include/show_slave_hosts.inc; connection slave2; --source include/stop_slave_io.inc connection master; let $show_statement= SHOW SLAVE HOSTS; let $field= Server_id; # 3 is server_id of slave2. let $condition= <> '3'; # All rows of 'SHOW SLAVE HOSTS' are not equal to 3. It mean that master has # knew the leave of slave2 and has unregistered it. let $wait_for_all= 1; source include/wait_show_condition.inc; source include/show_slave_hosts.inc; --source include/rpl_end.inc