From: Kevin Neufeld Date: Thu, 26 Jun 2008 02:40:09 +0000 (+0000) Subject: ST_SnapToGrid SQL functions were referencing the deprecated SnapToGrid instead of... X-Git-Tag: 1.4.0b1~880 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b804ede6e2149c59f1ad17e438753ee82100de9;p=postgis ST_SnapToGrid SQL functions were referencing the deprecated SnapToGrid instead of their ST_.. equivalents. git-svn-id: http://svn.osgeo.org/postgis/trunk@2812 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/lwgeom/lwpostgis.sql.in.c b/lwgeom/lwpostgis.sql.in.c index 2f2eda46c..1736935d1 100644 --- a/lwgeom/lwpostgis.sql.in.c +++ b/lwgeom/lwpostgis.sql.in.c @@ -3398,7 +3398,7 @@ CREATEFUNCTION SnapToGrid(geometry, float8, float8) -- Availability: 1.2.2 CREATEFUNCTION ST_SnapToGrid(geometry, float8, float8) RETURNS geometry - AS 'SELECT SnapToGrid($1, 0, 0, $2, $3)' + AS 'SELECT ST_SnapToGrid($1, 0, 0, $2, $3)' LANGUAGE 'SQL' _IMMUTABLE_STRICT; -- WITH (isstrict,iscachable); -- SnapToGrid(input, size) # xsize=ysize=size, offsets=0 @@ -3411,7 +3411,7 @@ CREATEFUNCTION SnapToGrid(geometry, float8) -- Availability: 1.2.2 CREATEFUNCTION ST_SnapToGrid(geometry, float8) RETURNS geometry - AS 'SELECT SnapToGrid($1, 0, 0, $2, $2)' + AS 'SELECT ST_SnapToGrid($1, 0, 0, $2, $2)' LANGUAGE 'SQL' _IMMUTABLE_STRICT; -- WITH (isstrict,iscachable); -- SnapToGrid(input, point_offsets, xsize, ysize, zsize, msize)