Server IP : 104.21.38.3 / Your IP : 172.71.81.82 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/mysql-test/suite/binlog/t/ |
Upload File : |
# # BUG#20414559: WL7083: ER1787, ER1785 NOT GENERATED ALWAYS WHEN ENFORCE_GTID_CONSISTENCY=WARN # WL#7083: GTIDs: set gtid_mode=ON online # # Verify that when enforce_gtid_consistency=WARN, and multiple # statements in the same transaction violate GTID-consistency, there # is one warning for each such statement. # --source include/have_binlog_format_statement.inc --source include/not_gtid_enabled.inc --source include/have_myisam.inc --source include/have_innodb.inc # # BUG#20414559 # call mtr.add_suppression("Statement violates GTID consistency:"); call mtr.add_suppression("Unsafe statement written to the binary log using statement format since BINLOG_FORMAT = STATEMENT"); --let $saved_enforce_gtid_consistency=`SELECT @@global.enforce_gtid_consistency` CREATE TABLE t1 (c1 INT) Engine=InnoDB; CREATE TABLE t2 (c1 INT) Engine=MyISAM; SET GLOBAL enforce_gtid_consistency=WARN; BEGIN; # warning is emitted CREATE TEMPORARY TABLE temp1 (a INT); # warning is emitted DROP TEMPORARY TABLE temp1; INSERT INTO t1 VALUES (1); # warning is emitted INSERT INTO t2 VALUES (1); COMMIT; BEGIN; INSERT INTO t1 VALUES (1); # warning is emitted INSERT INTO t2 VALUES (1); INSERT INTO t1 VALUES (1); COMMIT; BEGIN; # warning is emitted UPDATE t1, t2 SET t1.c1=2, t2.c1=1000; INSERT INTO t1 VALUES (1); COMMIT; DROP TABLE t1; DROP TABLE t2; --replace_result $saved_enforce_gtid_consistency SAVED_LEVEL --eval SET GLOBAL enforce_gtid_consistency=$saved_enforce_gtid_consistency RESET MASTER;