Server IP : 104.21.38.3 / Your IP : 172.69.176.42 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/extra/binlog_tests/ |
Upload File : |
--let $error_code= ER_GTID_UNSAFE_CREATE_DROP_TEMPORARY_TABLE_IN_TRANSACTION --let $error_message= Statement violates GTID consistency: CREATE TEMPORARY --let $sync_point= before_execute_sql_command --let $gtid_violation= 1 # When CREATE TEMPORARY or DROP TEMPORARY occurs in the middle of a # transaction, it is a GTID-violation because these statements do not # generate an implicit commit, but cannot be rolled back. This is # regardless of the storage engine. # When the created table is myisam, it is considered a # non-transactional statement, and therefore logged before the # transaction ends, and thus anonymous ownership is released and the # counters decreased. Except when binlog_format=row: in that case # CREATE TEMPORARY is not logged at all. Therefore, the transaction # context is left open, so it keeps anonymous ownership, and does not # modify counter values. --echo ---- CREATE TEMPORARY in trx (InnoDB, BEGIN) ---- --let $statement_ends_transaction= 0 --let $pre_statement= BEGIN --let $statement= CREATE TEMPORARY TABLE t1 (a INT) ENGINE = InnoDB --source extra/binlog_tests/enforce_gtid_consistency_statement.inc DROP TEMPORARY TABLE IF EXISTS t1; --echo ---- CREATE TEMPORARY in trx (MyISAM, BEGIN) ---- --let $statement_ends_transaction= 1 --let $statement_ends_transaction_row= 0 --let $pre_statement= BEGIN --let $statement= CREATE TEMPORARY TABLE t1 (a INT) ENGINE = MyISAM --source extra/binlog_tests/enforce_gtid_consistency_statement.inc DROP TEMPORARY TABLE IF EXISTS t1; --echo ---- CREATE TEMPORARY in trx (InnoDB, AUTOCOMMIT=0) ---- --let $statement_ends_transaction= 0 SET AUTOCOMMIT = 0; --let $statement= CREATE TEMPORARY TABLE t1 (a INT) ENGINE = InnoDB --source extra/binlog_tests/enforce_gtid_consistency_statement.inc SET AUTOCOMMIT = 1; DROP TEMPORARY TABLE IF EXISTS t1; --echo ---- CREATE TEMPORARY in trx (MyISAM, AUTOCOMMIT=0) ---- --let $statement_ends_transaction= 1 --let $statement_ends_transaction_row= 0 SET AUTOCOMMIT = 0; --let $statement= CREATE TEMPORARY TABLE t1 (a INT) ENGINE = MyISAM --source extra/binlog_tests/enforce_gtid_consistency_statement.inc SET AUTOCOMMIT = 1; DROP TEMPORARY TABLE IF EXISTS t1; --echo ---- DROP TEMPORARY in trx (InnoDB, BEGIN) ---- --let $statement_ends_transaction= 0 CREATE TEMPORARY TABLE IF NOT EXISTS t1 (a INT) ENGINE = InnoDB; --let $pre_statement= BEGIN --let $statement= DROP TEMPORARY TABLE t1 --source extra/binlog_tests/enforce_gtid_consistency_statement.inc --echo ---- DROP TEMPORARY in trx (MyISAM, BEGIN) ---- --let $statement_ends_transaction= 1 CREATE TEMPORARY TABLE IF NOT EXISTS t1 (a INT) ENGINE = MyISAM; --let $pre_statement= BEGIN --let $statement= DROP TEMPORARY TABLE t1 --source extra/binlog_tests/enforce_gtid_consistency_statement.inc --echo ---- DROP TEMPORARY in trx (InnoDB, AUTOCOMMIT=0) ---- --let $statement_ends_transaction= 0 CREATE TEMPORARY TABLE IF NOT EXISTS t1 (a INT) ENGINE = InnoDB; SET AUTOCOMMIT = 0; --let $statement= DROP TEMPORARY TABLE t1 --source extra/binlog_tests/enforce_gtid_consistency_statement.inc SET AUTOCOMMIT = 1; --echo ---- DROP TEMPORARY in trx (MyISAM, AUTOCOMMIT=0) ---- --let $statement_ends_transaction= 1 CREATE TEMPORARY TABLE IF NOT EXISTS t1 (a INT) ENGINE = MyISAM; SET AUTOCOMMIT = 0; --let $statement= DROP TEMPORARY TABLE t1 --source extra/binlog_tests/enforce_gtid_consistency_statement.inc SET AUTOCOMMIT = 1; DROP TEMPORARY TABLE IF EXISTS t1;