⚝
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
/
innodb_gis
/
r
/
View File Name :
rtree_purge.result
create table t ( a point not null,b point not null,c point, d point not null,e point,f point, spatial key (d),spatial key (b) ) engine=innodb; create procedure p(i int) begin declare n int default 0; declare continue handler for sqlexception begin end; delete from t; repeat set @p=point(1,1); insert into t values(@p,@p,@p,@p,@p,@p); insert into t values(@p,@p,@p,@p,@p,@p); insert into t select @p,@p,@p,@p,@p,@p from t a,t b,t c,t d,t e,t f,t g,t h,t i,t j; delete from t; set n:=n+1; until n >= i end repeat; end| call p(200); drop procedure p; drop table t;