我正在使用 Postgresql 9.3 并安装了 cube 和 earthdistance 扩展。
我正在尝试遵循本教程,所以我有一个包含 4 个字段的简单事件表:id、name、lat、lng。
现在我正在尝试运行此查询,以获取 1 公里半径内的所有事件:
SELECT events.id, events.name FROM events WHERE earth_box(31.789225, 34.789612, 1000) @> ll_to_earth(events.lat, events.lng);
但我不断收到此错误:
20:59:34 Kernel error: ERROR: function earth_box(numeric, numeric, integer) does not exist
HINT: No function matches the given name and argument types. You might need to add explicit type casts.
所以我用铸造跑了同样的事情:
SELECT events.id, events.name FROM events WHERE earth_box(CAST(31.789225 AS float8), CAST(34.789612 AS float8), 1000) @> ll_to_earth(events.lat, events.lng);
我得到:
21:16:17 Kernel error: ERROR: function earth_box(double precision, double precision, integer) does not exist
^
HINT: No function matches the given name and argument types. You might need to add explicit type casts.