Server IP : 104.21.38.3 / Your IP : 172.70.143.3 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 ======= # # This test verifies that DROP for a temporary table created # in Row mode is not logged in binlog at session disconnect. # # ====== Implementation ====== # # Create temporary tables in statement or mixed mode using different engines, # also create a temporary table in Row mode, now when you connect to the session # after a disconnect print the output of show binlog events. # This will verify that the DROP for temporary table created in stmt or mixed # mode is written to binary log at session disconnect, but for the temporary table # created in Row mode no DROP statement for temporary table is logged at session # disconnect. # # ====== References ======= # # Bug#28606948:BACKPORT OF BUG #24670909 TO 5.7.22 # --source include/have_log_bin.inc --source include/have_myisam.inc --source include/have_binlog_format_mixed_or_statement.inc RESET MASTER; CREATE TABLE t1(a INT) ENGINE=InnoDB; CREATE TABLE t2(a INT) ENGINE=MyISAM; --source include/count_sessions.inc --connect(con1,localhost,root) # A DROP should be logged for the following tables because CREATE TABLE # is logged CREATE TEMPORARY TABLE tmp1 ENGINE=InnoDB SELECT * FROM t1; CREATE TEMPORARY TABLE tmp2 ENGINE=MyISAM SELECT * FROM t2; CREATE TEMPORARY TABLE tmp3 ENGINE=MyISAM SELECT * FROM t1; CREATE TEMPORARY TABLE tmp4 ENGINE=InnoDB SELECT * FROM t2; CREATE TEMPORARY TABLE tmp5 (a INT) ENGINE=InnoDB; CREATE TEMPORARY TABLE tmp6 (a INT) ENGINE=MyISAM; CREATE TEMPORARY TABLE tmp7 LIKE t1; CREATE TEMPORARY TABLE tmp8 LIKE t2; SET SESSION binlog_format= 'ROW'; # No DROP should be logged for tmp10 CREATE TEMPORARY TABLE tmp10 (a INT); --disconnect con1 --connection default --source include/wait_until_count_sessions.inc --source include/show_binlog_events.inc DROP TABLE t1, t2;