Server IP : 172.67.216.182 / Your IP : 172.71.124.142 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/include/ |
Upload File : |
# # WL#6972: Collect GTIDs to include in the protocol's OK packet # The test goes like this: # 1. Statements are executed and depending whether they are # updates or not, they get GTID assigned # 2. After each statement, we track the contents of the return packet. # They are saved to the result file. # # # Scenarios tested: # 1. DDL # 2. Explicit RW transaction # 3. Implicit RW transaction commit # 4. RO transaction following an RW autocommit transaction # 5. Finally DDL again # # These scenarios are tested for all three values of the # variable SESSION_TRACK_GTIDS # --let $uuid= `SELECT @@server_uuid` --let $i=3 --enable_session_track_info while($i) { if ($i == 3) { --let $_option= ALL_GTIDS } if ($i == 2) { --let $_option= OWN_GTID } if ($i == 1) { --let $_option= OFF } --eval SET SESSION SESSION_TRACK_GTIDS=$_option RESET MASTER; # transaction 1 - $uuid:1 CREATE TABLE t1 (c1 INT) Engine=InnoDB; # transaction 2 - $uuid:2 BEGIN; INSERT INTO t1 VALUES (1); COMMIT; # transaction $uuid:3 and $uuid:4 BEGIN; INSERT INTO t1 VALUES (2); CREATE TABLE t2 (c1 INT) Engine=InnoDB; # Testing RO transaction following a RW transaction # transaction $uuid:5 INSERT INTO t2 VALUES (1); # RO transaction SELECT * FROM t1; BEGIN; INSERT INTO t1 VALUES (2); SAVEPOINT s; INSERT INTO t1 VALUES (3); ROLLBACK TO SAVEPOINT s; ROLLBACK; # transaction $uuid:6 DROP TABLE t1, t2; --dec $i } --disable_session_track_info