Mysql st_intersects + st_buffer 不起作用

Mysql st_intersects + st_buffer doesn't work

我试图测试一条线是否在距一个点一定距离处相交。 St_distance 正好给了我想要的。但是,我很好奇 st_intersects + st_buffer:

$ mysql --version
mysql  Ver 14.14 Distrib 5.6.24, for Linux (x86_64) using  EditLine wrapper


mysql> set @l4=st_geomfromtext('LINESTRING(50 50, 52 45)');
mysql> set @g4=st_geomfromtext('POINT(50 49)');
mysql> select st_distance(@l4, @g4);
--------------
select st_distance(@l4, @g4)
--------------

+-----------------------+
| st_distance(@l4, @g4) |
+-----------------------+
|    0.3713906763541037 |
+-----------------------+
1 row in set (0.00 sec)

我认为该点非常接近直线,但显然 MySQL 不同意:

mysql> select st_intersects(st_buffer(@g4, 1), @l4);                                                                                                              
--------------
select st_intersects(st_buffer(@g4, 1), @l4)
--------------

+---------------------------------------+
| st_intersects(st_buffer(@g4, 1), @l4) |
+---------------------------------------+
|                                     0 |
+---------------------------------------+
1 row in set (0.00 sec)

为什么?我错过了什么吗?

P.S。 我在 H2GIS 中尝试了上面的命令,它说确实如此!

在这种情况下,

ST_Intersects 应该 return 为真。

这似乎是此处报告的错误:https://bugs.mysql.com/bug.php?id=71076, and fixed in MySQL 5.7.6, according to the release notes here: http://forums.mysql.com/read.php?3,629183,629183

“这项工作还纠正了 [...] ST_Intersects() 有时会错误地计算 LineString 和 Polygon 相交的结果。"