⚝
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_query_and_diff_master_slave.inc
# ==== Purpose ==== # # Kill a query, sync master with slave, and diff the output of a # statement on master and slave to check if statement is correctly # replicated. # # ==== Usage ==== # # connection <CONNECTION>; # let $connection_name=<CONNECTION> # let $connection_id=`SELECT CONNECTION_ID()`; # let $rpl_diff_statement=<SQL COMMAND>; # send <SQL COMMAND>; # source include/kill_query_and_diff_master_slave.inc; # # Note: <CONNECTION> must not be 'master'. # # See also kill_query.inc and rpl_diff.inc for more # information source include/kill_query.inc; # Release the debug lock if used, so that the statements in # rpl_diff.inc will not be blocked. connection master; disable_query_log; disable_result_log; if ($debug_lock) { eval SELECT RELEASE_LOCK($debug_lock); } enable_result_log; enable_query_log; --source include/rpl_diff.inc # Acquire the debug lock again if used connection master; disable_query_log; disable_result_log; if ($debug_lock) { eval SELECT GET_LOCK($debug_lock, 10); } enable_result_log; enable_query_log; connection $connection_name;