]> granicus.if.org Git - postgis/commitdiff
Drop unused functions for pgis_abs during upgrades
authorPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 6 Mar 2018 13:51:28 +0000 (13:51 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Tue, 6 Mar 2018 13:51:28 +0000 (13:51 +0000)
References #4035

git-svn-id: http://svn.osgeo.org/postgis/trunk@16447 b70326c6-7e19-0410-871a-916f4a2858ee

NEWS
postgis/postgis_drop_after.sql

diff --git a/NEWS b/NEWS
index 9d3683e80c158f3c9a6020d58c03736c4de05eea..24066b564374ae5230afb860d65b4b0ab8e8b759 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,7 @@ PostGIS 2.5.0
   - #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)
index 406fa4921356989580125afd387c39c05974d77c..b5c559e9fc6bb0c6859be291cae2907213235169 100644 (file)
@@ -155,6 +155,11 @@ DROP FUNCTION IF EXISTS geography_gist_join_selectivity(internal, oid, internal,
 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