⚝
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_concurrent_srch_2.result
CREATE TABLE g ( id INT PRIMARY KEY, p GEOMETRY NOT NULL, SPATIAL KEY p_idx(p) ) ENGINE=InnoDB; create procedure populate_g(IN `rows` INT) begin declare i int default 1; while (i <= `rows`) DO insert into test.g (id, p) values (i, POINT(i, i)); set i = i + 1; end while; end| call populate_g(650); start transaction; select id from g WHERE MBRContains(ST_GeomFromText('Polygon((100 0,100 5,105 5,105 0,100 0))'),p) for update; id set innodb_lock_wait_timeout = 1; set transaction isolation level serializable; insert into g values(1103, POINT(100, 1)); ERROR HY000: Lock wait timeout exceeded; try restarting transaction start transaction; select id from g WHERE MBRContains(ST_GeomFromText('Polygon((100 0,100 5,105 5,105 0,100 0))'),p) for update; id commit; set innodb_lock_wait_timeout = 1; set transaction isolation level serializable; insert into g values(1103, POINT(100, 1)); ERROR HY000: Lock wait timeout exceeded; try restarting transaction commit; DROP TABLE g; DROP PROCEDURE populate_g; set innodb_lock_wait_timeout = default;