From: Regina Obe Date: Wed, 29 Oct 2008 18:00:09 +0000 (+0000) Subject: Add ST_Union second function proto X-Git-Tag: 1.3.4rc3~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b1c3310b7bae2b7fe9fbab5e9589fb746aa02f91;p=postgis Add ST_Union second function proto git-svn-id: http://svn.osgeo.org/postgis/branches/1.3@3213 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/postgis_comments.sql b/postgis_comments.sql index 6b155a984..f638a6539 100644 --- a/postgis_comments.sql +++ b/postgis_comments.sql @@ -38,7 +38,7 @@ COMMENT ON FUNCTION PostGIS_Scripts_Released() IS 'Returns the version number of COMMENT ON FUNCTION PostGIS_Uses_Stats() IS 'Returns TRUE if STATS usage has been enabled.'; COMMENT ON FUNCTION PostGIS_Version() IS 'Returns PostGIS version number and compile-time options.'; - + COMMENT ON FUNCTION Probe_Geometry_Columns() IS 'Scans all tables with PostGIS geometry constraints and adds them to the geometry_columns table if they are not there.'; COMMENT ON FUNCTION UpdateGeometrySRID(varchar , varchar , integer ) IS 'args: table_name, column_name, srid - Updates the SRID of all features in a geometry column, geometry_columns metadata and srid table constraint'; @@ -334,7 +334,7 @@ COMMENT ON FUNCTION ST_SymDifference(geometry , geometry ) IS 'args: geomA, geom COMMENT ON AGGREGATE ST_Union(geometry) IS 'args: g1field - Returns a geometry that represents the point set union of the Geometries.'; -COMMENT ON FUNCTION ST_Union(geometry) IS 'args: g1 - Returns a geometry that represents the point set union of the Geometries.'; +COMMENT ON FUNCTION ST_Union(geometry, geometry) IS 'args: g1, g2 - Returns a geometry that represents the point set union of the Geometries.'; COMMENT ON FUNCTION ST_Line_Interpolate_Point(geometry , float ) IS 'args: a_linestring, a_fraction - Returns a point interpolated along a line. Second argument is a float8 between 0 and 1 representing fraction of total length of linestring the point has to be located.';