⚝
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
/
extra
/
binlog_tests
/
View File Name :
binlog_xa_prepare_connection.inc
# # This file initiate connections to run XA transactions up to # their prepare. # Connection name, transaction name and its content depends on # supplied parameters. # # param $type type of transaction # param $index index identifies the connection with those of type $type # param $sql_init1 a query to execute once connection is established # param $sql_init2 a query to execute once connection is established # param $sql_doit a query to execute inside transaction # Note, the query may depend on tables created by caller # --connect (conn$index$type, 127.0.0.1,root,,test,$MASTER_MYPORT,) if ($sql_init1) { --eval $sql_init1 } if ($sql_init2) { --eval $sql_init2 } --eval XA START 'trx$index$type' if ($sql_doit) { --disable_result_log --eval $sql_doit --enable_result_log } --eval XA END 'trx$index$type' --eval XA PREPARE 'trx$index$type'