From: Paul Ramsey Date: Wed, 22 Aug 2007 15:09:43 +0000 (+0000) Subject: Rename ST_GeomUnion to ST_Union in docs and ST_MemGeomUnion to ST_MemUnion in X-Git-Tag: 1.3.2~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=317d31c2d36dc08e8cc93da8aa27821f85437bd7;p=postgis Rename ST_GeomUnion to ST_Union in docs and ST_MemGeomUnion to ST_MemUnion in .sql. git-svn-id: http://svn.osgeo.org/postgis/trunk@2700 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/postgis.xml b/doc/postgis.xml index 39384fcdf..6ae0071a2 100644 --- a/doc/postgis.xml +++ b/doc/postgis.xml @@ -217,7 +217,7 @@ (Recommended) GEOS geometry library. The GEOS library is used to provide geometry tests (ST_Touches(), ST_Contains(), ST_Intersects()) and - operations (Buffer(), GeomUnion(), Difference()) within PostGIS. + operations (ST_Buffer(), ST_Union(), ST_Difference()) within PostGIS. GEOS is available for download from http://geos.refractions.net. @@ -3068,7 +3068,7 @@ - ST_GeomUnion(geometry, geometry) + ST_Union(geometry, geometry) Returns a geometry that represents the point set union of @@ -3101,7 +3101,7 @@ - ST_MemGeomUnion(geometry set) + ST_MemUnion(geometry set) Same as the above, only memory-friendly (uses less memory diff --git a/lwgeom/lwpostgis.sql.in b/lwgeom/lwpostgis.sql.in index 401ff6459..3211daabb 100644 --- a/lwgeom/lwpostgis.sql.in +++ b/lwgeom/lwpostgis.sql.in @@ -4332,7 +4332,7 @@ CREATE AGGREGATE MemGeomUnion ( ); -- Availability: 1.2.2 -CREATE AGGREGATE ST_MemGeomUnion ( +CREATE AGGREGATE ST_MemUnion ( basetype = geometry, sfunc = ST_union, stype = geometry