From: Regina Obe Date: Mon, 4 Apr 2011 13:10:32 +0000 (+0000) Subject: minor issue preventing legacy load: locate_along_measure should use ST_ wrapper X-Git-Tag: 2.0.0alpha1~1799 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d620ab3c32c90b2cbcb400ed455c53247dfc1463;p=postgis minor issue preventing legacy load: locate_along_measure should use ST_ wrapper git-svn-id: http://svn.osgeo.org/postgis/trunk@7003 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis/legacy.sql.in.c b/postgis/legacy.sql.in.c index d701d386a..2f922c90e 100644 --- a/postgis/legacy.sql.in.c +++ b/postgis/legacy.sql.in.c @@ -835,7 +835,7 @@ CREATE OR REPLACE FUNCTION LineMerge(geometry) -- Deprecation in 1.2.3 CREATE OR REPLACE FUNCTION locate_along_measure(geometry, float8) RETURNS geometry - AS $$ SELECT locate_between_measures($1, $2, $2) $$ + AS $$ SELECT ST_locate_between_measures($1, $2, $2) $$ LANGUAGE 'sql' IMMUTABLE STRICT; -- Deprecation in 1.2.3