Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 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 : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
# ==== Purpose ==== # # Verify that gtid_next with empty transaction works fine # inside/outside stored procedure when binlog is disabled. # # ==== References ==== # # BUG#19774317 GTID_NEXT WITH EMPTY TRANSACTIONS DOES NOT WORK INSIDE STORED PROCEDURES # mysql-test/suite/rpl/t/rpl_gtid_empty_transaction.test # Test is not required to run against embedded server --source include/not_embedded.inc # Should be tested against "binlog disabled" server --source include/not_log_bin.inc --source include/gtid_utils.inc # Clean gtid_executed so that test can execute after other tests RESET MASTER; --source include/gtid_step_reset.inc eval SET @@SESSION.GTID_NEXT = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:1'; COMMIT; SET @@SESSION.GTID_NEXT = 'AUTOMATIC'; # Verify exactly one GTID was generated --let $gtid_step_count= 1 --let $gtid_step_only_count= 1 --source include/gtid_step_assert.inc CREATE TABLE t1 (a INT); delimiter |; CREATE PROCEDURE p1() BEGIN SET @@SESSION.GTID_NEXT = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:2'; START TRANSACTION; COMMIT; SET @@SESSION.GTID_NEXT = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa:3'; START TRANSACTION; COMMIT; END| delimiter ;| --source include/gtid_step_reset.inc CALL p1(); SET @@SESSION.GTID_NEXT = 'AUTOMATIC'; # Verify exactly two GTIDs were generated --let $gtid_step_count= 2 --let $gtid_step_only_count= 1 --source include/gtid_step_assert.inc --let $gtid_step_only_count= 0 DROP TABLE t1; DROP PROCEDURE IF EXISTS p1; # Cleanup --source include/gtid_utils_end.inc