⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.124
Server IP:
50.28.103.30
Server:
Linux host.jcukjv-lwsites.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
Server Software:
nginx/1.28.0
PHP Version:
8.3.12
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
www
/
server
/
mysql
/
mysql-test
/
include
/
View File Name :
kill_wait_for_executed_gtid_set.inc
# ==== 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