Server IP : 104.21.38.3 / Your IP : 108.162.227.30 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/extra/rpl_tests/ |
Upload File : |
# Check replication of one statement assuming that the engine on the # slave is a blackhole engine. # Input: # $statement Statement to evaluate, it is assumed to change t1 # 1. Evaluate statement on master, it is assumed to change t1 # 2. Wait for statement to be processed on slave # 3. SELECT from table t1 to see what was written # 4. Compare position on slave before executing statement and after # executing statement. If difference is >0, then something was # written to the binary log on the slave. connection slave; let $before = query_get_value("SHOW MASTER STATUS", Position, 1); --echo [on master] connection master; eval $statement; --echo [on slave] --source include/sync_slave_sql_with_master.inc --echo # Expect 0 SELECT COUNT(*) FROM t1; let $after = query_get_value("SHOW MASTER STATUS", Position, 1); let $something_written = `select $after - $before != 0`; if ($something_written) { --echo >>> Something was written to binary log <<< } if (!$something_written) { --echo >>> Nothing was written to binary log <<< }