先看普通写法,没有任何问题
select ST_GeomFromText('POINT(1 2)'); -- POINT(1 2) 正常
select ST_IsEmpty(ST_GeomFromText('POINT(1 2)')); -- 0 正常
-- mysql 文档里面翻到的,找到的唯一一个能用 EMPTY 来写的
select ST_IsEmpty(ST_GeomFromText('GEOMETRYCOLLECTION EMPTY')); -- 1 正常
再看 EMPTY 的写法,被摁倒地上摩擦
select ST_GeomFromText('POINT EMPTY'); -- 报错 Invalid GIS data provided to function st_geomfromtext.
-- 用 null 代替 GIS EMPTY ?
select ST_GeomFromText(null); -- 就是 null
select ST_IsEmpty(null); -- 返回的什么卵几把玩意?使用 null 完全不可用!
换成 POLYGON 也是如此。
没辙了,请问 mysql 里 geometry POINT 、POLYGON EMPTY 到底要如何表示?
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.