From 6dea41a252232feaad3a2eb8fd45bde551e63242 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Tue, 6 Mar 2018 13:51:28 +0000 Subject: [PATCH] Drop unused functions for pgis_abs during upgrades References #4035 git-svn-id: http://svn.osgeo.org/postgis/trunk@16447 b70326c6-7e19-0410-871a-916f4a2858ee --- NEWS | 1 + postgis/postgis_drop_after.sql | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/NEWS b/NEWS index 9d3683e80..24066b564 100644 --- 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) diff --git a/postgis/postgis_drop_after.sql b/postgis/postgis_drop_after.sql index 406fa4921..b5c559e9f 100644 --- a/postgis/postgis_drop_after.sql +++ b/postgis/postgis_drop_after.sql @@ -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 -- 2.50.1