Server IP : 185.86.78.101 / Your IP : 216.73.216.213 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/include/ |
Upload File : |
# ==== Purpose ==== # # Kill an ongoing WAIT_FOR_EXECUTED_GTID_SET query on a specified connection. # # ==== Usage ==== # # --let $thread_id= THREAD_ID # --let $rpl_connection_name= CONNECTION # --source include/kill_wait_for_executed_gtid_set.inc # # Parameters: # $thread_id # Thread_id of the ongoing WAIT_FOR_EXECUTED_GTID_SET # # $rpl_connection_name # The connection where WAIT_FOR_EXECUTED_GTID_SET is executing. # The script will execute 'reap' on this connection. --let $include_filename= kill_wait_for_executed_gtid_set.inc --source include/begin_include_file.inc if ($rpl_connection_name == '') { --die !!!ERROR IN TEST: Set $rpl_connection_name before you source kill_wait_for_executed_gtid_set.inc } # Kill --disable_query_log --disable_result_log eval KILL QUERY $thread_id; # Wait for query to stop executing query. --let $wait_condition= SELECT COUNT(*) = 0 FROM performance_schema.threads WHERE PROCESSLIST_ID = $thread_id AND PROCESSLIST_INFO LIKE '%WAIT_FOR_EXECUTED_GTID_SET%' --source include/wait_condition.inc # Reap killed query --source include/rpl_connection.inc --error ER_QUERY_INTERRUPTED --reap --let $include_filename= kill_wait_for_executed_gtid_set.inc --source include/end_include_file.inc