Server IP : 172.67.216.182 / Your IP : 172.70.147.66 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 : |
--echo # Bug#47699 rpl.rpl_backup_block fails sporadically --echo # --echo # START SLAVE released the lock and returned before it cleared the error, --echo # so there is a possibility that Slave_SQL_Error is not 0. --source include/not_group_replication_plugin.inc source include/have_debug_sync.inc; source include/master-slave.inc; --echo [on slave] connection slave; CALL mtr.add_suppression("Slave: Table 't1' already exists Error_code: 1050"); CALL mtr.add_suppression("Slave SQL for channel '': .*Error .Table .t1. already exists. on query.* Error_code: 1050"); call mtr.add_suppression("The slave coordinator and worker threads are stopped, possibly leaving data in inconsistent state"); --echo # The statement makes SQL thread to fail. CREATE TABLE t1(c1 INT); --echo [on master] connection master; CREATE TABLE t1(c1 INT); --echo [on slave] connection slave; # ERROR: Table already exists. let $slave_sql_errno= 1050; source include/wait_for_slave_sql_error.inc; DROP TABLE t1; --echo # Block SQL thread immediately after it starts. SET DEBUG_SYNC='after_start_slave WAIT_FOR signal.continue'; START SLAVE SQL_THREAD; source include/wait_for_slave_sql_to_start.inc; --echo # Check Slave_SQL_Error, there should not be an error. source include/check_slave_no_error.inc; --echo # Resume SQL thread SET DEBUG_SYNC="now SIGNAL signal.continue"; --echo [on master] connection master; DROP TABLE t1; source include/rpl_end.inc;