Skip to content
Snippets Groups Projects
Commit a61e15a5 authored by Tom Lane's avatar Tom Lane
Browse files

geo_distance function needs to be marked strict.

From Mark Stosberg.
parent 31874ad3
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment