[postgis-tickets] r15189 - Mark changed aggregates

Sandro Santilli strk at kbt.io
Fri Oct 7 13:00:46 PDT 2016


Author: strk
Date: 2016-10-07 13:00:46 -0700 (Fri, 07 Oct 2016)
New Revision: 15189

Modified:
   trunk/postgis/postgis.sql.in
Log:
Mark changed aggregates

Fixes #3656 (aggregate upgrades)

Modified: trunk/postgis/postgis.sql.in
===================================================================
--- trunk/postgis/postgis.sql.in	2016-10-07 19:49:32 UTC (rev 15188)
+++ trunk/postgis/postgis.sql.in	2016-10-07 20:00:46 UTC (rev 15189)
@@ -3742,6 +3742,8 @@
 
 
 -- Availability: 1.2.2
+-- Changed: 2.2.0 to use non-deprecated ST_CombineBBox (r13535)
+-- Changed: 2.3.0 to support PostgreSQL 9.6
 CREATE AGGREGATE ST_Extent(
 	sfunc = ST_CombineBBox,
 #if POSTGIS_PGSQL_VERSION >= 96
@@ -3753,6 +3755,8 @@
 	);
 
 -- Availability: 2.0.0
+-- Changed: 2.2.0 to use non-deprecated ST_CombineBBox (r13535)
+-- Changed: 2.3.0 to support PostgreSQL 9.6
 CREATE AGGREGATE ST_3DExtent(
 	sfunc = ST_CombineBBox,
 #if POSTGIS_PGSQL_VERSION >= 96
@@ -3769,6 +3773,7 @@
 	LANGUAGE 'c' IMMUTABLE  _PARALLEL;
 
 -- Availability: 1.2.2
+-- Changed: 2.3.0 to support PostgreSQL 9.6
 CREATE AGGREGATE ST_MemCollect(
 	sfunc = ST_collect,
 #if POSTGIS_PGSQL_VERSION >= 96
@@ -3785,6 +3790,7 @@
 	LANGUAGE 'c' IMMUTABLE STRICT  _PARALLEL;
 
 -- Availability: 1.2.2
+-- Changed: 2.3.0 to support PostgreSQL 9.6
 CREATE AGGREGATE ST_MemUnion (
 	basetype = geometry,
 	sfunc = ST_Union,



More information about the postgis-tickets mailing list