From beeb6364607401832fe242f5eb1088c6b8a9192f Mon Sep 17 00:00:00 2001 From: Sandro Santilli Date: Thu, 23 Oct 2003 08:06:54 +0000 Subject: [PATCH] Added 'unite' aggregate. git-svn-id: http://svn.osgeo.org/postgis/trunk@322 b70326c6-7e19-0410-871a-916f4a2858ee --- Attic/postgis_sql_common.sql.in | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Attic/postgis_sql_common.sql.in b/Attic/postgis_sql_common.sql.in index f4e98752f..d471e6b9e 100644 --- a/Attic/postgis_sql_common.sql.in +++ b/Attic/postgis_sql_common.sql.in @@ -12,6 +12,9 @@ -- -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- $Log$ +-- Revision 1.17 2003/10/23 08:06:54 strk +-- Added 'unite' aggregate. +-- -- Revision 1.16 2003/10/17 16:07:05 dblasby -- made isEmpty() return true/false -- @@ -1241,7 +1244,11 @@ CREATE FUNCTION buffer(geometry,float8) RETURNS geometry AS '@MODULE_FILENAME@','geomunion' LANGUAGE 'C' WITH (isstrict); - + +CREATE AGGREGATE unite ( + basetype = geometry, + sfunc = geomunion, + stype = geometry ); CREATE FUNCTION relate(geometry,geometry) -- 2.50.1