⚝
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
/
suite
/
binlog
/
r
/
View File Name :
binlog_tmp_table.result
RESET MASTER; create table foo (a int); flush logs; create temporary table tmp1_foo like foo; create temporary table tmp2_foo (a int); insert into tmp1_foo values (1), (2), (3), (4); replace into tmp2_foo values (1), (2), (3), (4); update tmp1_foo set a=2*a-1; update tmp2_foo set a=2*a; delete from tmp1_foo where a < 5; delete from tmp2_foo where a < 5; insert into foo select * from tmp1_foo; insert into foo select * from tmp2_foo; truncate table tmp1_foo; truncate table tmp2_foo; flush logs; select * from foo; a 5 7 6 8 drop table foo; create table foo (a int); RESET MASTER; select * from foo; a 5 7 6 8 drop table foo; RESET MASTER; create database b51226; use b51226; create temporary table t1(i int); use b51226; create temporary table t1(i int); create temporary table t1(i int); ERROR 42S01: Table 't1' already exists insert into t1 values(1); DROP DATABASE b51226; FLUSH LOGS; RESET MASTER;