[postgis-tickets] r16680 - Add rectfuncts to drop file so existing installs will get cleaned up

Paul Ramsey pramsey at cleverelephant.ca
Wed Aug 1 11:32:50 PDT 2018


Author: pramsey
Date: 2018-08-01 11:32:50 -0700 (Wed, 01 Aug 2018)
New Revision: 16680

Modified:
   trunk/postgis/postgis_drop_after.sql
Log:
Add rectfuncts to drop file so existing installs will get cleaned up


Modified: trunk/postgis/postgis_drop_after.sql
===================================================================
--- trunk/postgis/postgis_drop_after.sql	2018-08-01 15:37:26 UTC (rev 16679)
+++ trunk/postgis/postgis_drop_after.sql	2018-08-01 18:32:50 UTC (rev 16680)
@@ -171,6 +171,11 @@
 
 DROP FUNCTION IF EXISTS _ST_DumpPoints( geometry, integer[]); -- removed 2.4.0, but really should have been removed 2.1.0 when ST_DumpPoints got reimpmented in C
 
+-- Temporary clean-up while we wait to return these to action in dev
+DROP FUNCTION IF EXISTS _ST_DistanceRectTree(g1 geometry, g2 geometry);
+DROP FUNCTION IF EXISTS _ST_DistanceRectTreeCached(g1 geometry, g2 geometry);
+
+
 -- pgis_abs type was increased from 8 bytes in 2.1 to 16 bytes in 2.2
 -- See #3460
 UPDATE pg_type SET typlen=16 WHERE typname='pgis_abs' AND typlen=8;



More information about the postgis-tickets mailing list