Server IP : 104.21.38.3 / Your IP : 162.158.189.231 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 : |
# # BUG#36391 and BUG#38731 # # The fix for BUG#20103 "Escaping with backslash does not work as expected" # was implemented too greedy though in that it not only changes the behavior # of backslashes within strings but in general, so disabling command shortcuts # like \G or \C (which in turn leads to BUG#36391: "mysqlbinlog creates invalid charset statements". # # The test executes simple commands that are stored in the binary log and # re-execute them through the mysql client which should have to process # some command shortcuts. The backslashes within strings is disabled in the file # rpl_bug36391-master.opt by the option --sql_mode=NO_BACKSLASH_ESCAPES. # # --source include/have_log_bin.inc --source include/have_binlog_format_mixed.inc CREATE TABLE t1(id INT); let $datadir = `SELECT @@DATADIR`; let $binlog= query_get_value(SHOW MASTER STATUS, File, 1); let $binlog_path= `SELECT CONCAT(@@DATADIR, '$binlog')`; SHOW TABLES; FLUSH LOGS; copy_file $binlog_path $datadir/master-bin.saved; DROP TABLE t1; # Reset GTIDs RESET MASTER; # Replay binlog --exec $MYSQL_BINLOG $datadir/master-bin.saved | $MYSQL test SHOW TABLES; # Clean up DROP TABLE t1; --remove_file $datadir/master-bin.saved