Server IP : 104.21.38.3 / Your IP : 162.158.189.218 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 that the slave stops gracefully when reading a relay log with # corrupted data. # # ==== Implementation ==== # # Setup "fake replication" where the slave only starts the SQL thread, # not the IO thread, and reads from an existing relay log that has # been prepared so that it contains the error. This requires some # extra server options: see the -master.opt file. # # ==== Related bugs ==== # # BUG#31793: log event corruption causes crash # BUG#40482: server/mysqlbinlog crashes when reading invalid Incident_log_event --source include/not_group_replication_plugin.inc --source include/not_gtid_enabled.inc --source include/master-slave.inc # BUG#40482 only manifested itself in debug-compiled binaries. source include/have_debug.inc; --connection slave call mtr.add_suppression('Found invalid event in binary log'); call mtr.add_suppression('Slave SQL.*Relay log read failure: Could not parse relay log event entry.* 1594'); # # BUG#40482: server/mysqlbinlog crashes when reading invalid Incident_log_event # # The relay log contains an Incident_log_event with a non-existing # incident number. --echo ==== Initialize ==== --source include/stop_slave.inc RESET SLAVE; let $fake_relay_log= $MYSQL_TEST_DIR/std_data/bug40482-bin.000001; source include/setup_fake_relay_log.inc; --echo ==== Test ==== START SLAVE SQL_THREAD; let $slave_sql_errno= 1594; # ER_SLAVE_RELAY_LOG_READ_FAILURE let $show_slave_sql_error= 1; source include/wait_for_slave_sql_error.inc; --echo ==== Clean up ==== source include/cleanup_fake_relay_log.inc; --let $rpl_only_running_threads= 1 --source include/rpl_end.inc