[postgis-tickets] r16447 - Drop unused functions for pgis_abs during upgrades

Paul Ramsey pramsey at cleverelephant.ca
Tue Mar 6 05:51:28 PST 2018


Author: pramsey
Date: 2018-03-06 05:51:28 -0800 (Tue, 06 Mar 2018)
New Revision: 16447

Modified:
   trunk/NEWS
   trunk/postgis/postgis_drop_after.sql
Log:
Drop unused functions for pgis_abs during upgrades
References #4035


Modified: trunk/NEWS
===================================================================
--- trunk/NEWS	2018-03-05 17:42:47 UTC (rev 16446)
+++ trunk/NEWS	2018-03-06 13:51:28 UTC (rev 16447)
@@ -14,6 +14,7 @@
   - #3885, version number removed from address_standardize lib file
   - #3893, raster support functions can only be loaded in the same schema
            with core PostGIS functions.
+  - #4035, remove dummy pgis_abs type from aggregate/collect routines. 
 
 * Enhancements and Fixes*
   - #3944, Update to EPSG register v9.2 (Even Rouault)

Modified: trunk/postgis/postgis_drop_after.sql
===================================================================
--- trunk/postgis/postgis_drop_after.sql	2018-03-05 17:42:47 UTC (rev 16446)
+++ trunk/postgis/postgis_drop_after.sql	2018-03-06 13:51:28 UTC (rev 16447)
@@ -155,6 +155,11 @@
 DROP FUNCTION IF EXISTS ST_AsBinary(text); -- deprecated in 2.0
 DROP FUNCTION IF EXISTS postgis_uses_stats(); -- deprecated in 2.0
 
+-- Old accum aggregate support type, removed in 2.5.0
+DROP FUNCTION IF EXISTS pgis_abs_in(cstring);
+DROP FUNCTION IF EXISTS pgis_abs_out(pgis_abs);
+DROP TYPE IF EXISTS pgis_abs;
+
 DROP FUNCTION IF EXISTS st_astwkb(geometry,integer,bigint,bool,bool); -- temporarely introduced before 2.2.0 final
 DROP FUNCTION IF EXISTS pgis_twkb_accum_transfn(internal,geometry,integer); -- temporarely introduced before 2.2.0 final
 DROP FUNCTION IF EXISTS pgis_twkb_accum_transfn(internal,geometry,integer,bigint); -- temporarely introduced before 2.2.0 final



More information about the postgis-tickets mailing list