Server IP : 104.21.38.3 / Your IP : 108.162.226.148 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/binlog/t/ |
Upload File : |
# ==== Purpose ==== # # Verify that their is no crash any more while executing a # 'CREATE...SELECT' statement even if it is interrupted at # debug point 'mysql_lock_tables_kill_query' in the middle # and 'CREATE TABLE' event was not logged when # binlog_format=row, gtid_mode=off and autocommit=0. # # ==== Implementation ==== # # 1. Disable autocommit. # 2. Create a table with select. # 3. Drop the table from another connection. # 4. Set DEBUG= '+d,mysql_lock_tables_kill_query'. # 5. There is no crash while executing a 'CREATE ... SELECT' # statement even if it is interrupted at the above debug # point in the middle. # 6. Verify that 'CREATE TABLE' event was not logged. # # ==== References ==== # # Bug#21114464 CRASHES WITH CONCURRENT DDL+KILL+BIN LOGGING --source include/have_binlog_format_row.inc --source include/not_gtid_enabled.inc --source include/have_debug.inc --connection default SET SESSION autocommit= 0; CREATE TABLE t1 AS SELECT 1 AS col1; --connect(con1,localhost,root) --connection con1 DROP TABLE t1; --connection default RESET MASTER; SET SESSION DEBUG= '+d,mysql_lock_tables_kill_query'; --error ER_QUERY_INTERRUPTED CREATE TABLE t2 AS SELECT 1 AS col1; SET SESSION DEBUG= '-d,mysql_lock_tables_kill_query'; --echo # Verify that 'CREATE TABLE t2' event was not logged. --source include/show_binlog_events.inc SET SESSION autocommit= 1;