⚝
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
/
t
/
View File Name :
bug17057168.test
#******************************************************** # Bug 17057168 - LARGE PERFORMANCE REGRESSION FOR INNODB # GEOMETRY/SPATIAL INDEX LOOKUP #******************************************************** --source include/have_geometry.inc --source include/not_embedded.inc --source include/no_valgrind_without_big.inc CREATE DATABASE geotest; use geotest; CREATE TABLE tmp (id int unsigned NOT NULL PRIMARY KEY); INSERT INTO tmp VALUES (0), (1), (2), (3), (4), (5), (6), (7), (8), (9); INSERT INTO tmp SELECT 10+id FROM tmp; INSERT INTO tmp SELECT 20+id FROM tmp; INSERT INTO tmp SELECT 40+id FROM tmp; INSERT INTO tmp SELECT 80+id FROM tmp; CREATE TABLE t1 (id int unsigned NOT NULL auto_increment PRIMARY KEY, location point, INDEX (location)) ENGINE=InnoDB; INSERT INTO t1 (location) SELECT POINT(tmp1.id, tmp2.id) FROM tmp tmp1, tmp tmp2 ORDER BY tmp1.id, tmp2.id; #Befor fix, the row number will be the total number of index recs, #After fix, the row number will be 1. EXPLAIN SELECT id, ST_AsText(location) FROM t1 WHERE location = POINT(1, 2); SELECT id, ST_AsText(location) FROM t1 WHERE location = POINT(1, 2); DROP TABLE t1; DROP TABLE tmp; DROP DATABASE geotest;