geo_distance function needs to be marked strict.
From Mark Stosberg.
This commit is contained in:
parent
31874ad39b
commit
a61e15a566
@ -3,7 +3,8 @@
|
||||
|
||||
DROP FUNCTION geo_distance (point, point);
|
||||
CREATE FUNCTION geo_distance (point, point) RETURNS float8
|
||||
AS 'MODULE_PATHNAME' LANGUAGE 'c';
|
||||
AS 'MODULE_PATHNAME' LANGUAGE 'c'
|
||||
WITH (isstrict);
|
||||
|
||||
SELECT geo_distance ('(1,2)'::point, '(3,4)'::point);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user