Server IP : 104.21.38.3 / Your IP : 172.69.176.97 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/innodb_gis/r/ |
Upload File : |
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; EXPLAIN SELECT id, ST_AsText(location) FROM t1 WHERE location = POINT(1, 2); id select_type table partitions type possible_keys key key_len ref rows filtered Extra 1 SIMPLE t1 NULL ref location location 28 const 1 100.00 Using where Warnings: Note 1003 /* select#1 */ select `geotest`.`t1`.`id` AS `id`,st_astext(`geotest`.`t1`.`location`) AS `ST_AsText(location)` from `geotest`.`t1` where (`geotest`.`t1`.`location` = <cache>(point(1,2))) SELECT id, ST_AsText(location) FROM t1 WHERE location = POINT(1, 2); id ST_AsText(location) 163 POINT(1 2) DROP TABLE t1; DROP TABLE tmp; DROP DATABASE geotest;