]> granicus.if.org Git - postgis/commitdiff
Add rectfuncts to drop file so existing installs will get cleaned up
authorPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 1 Aug 2018 18:32:50 +0000 (18:32 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Wed, 1 Aug 2018 18:32:50 +0000 (18:32 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@16680 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/postgis_drop_after.sql

index de46d063d9c3e7a050195dc18e394e4122437c18..6c06156e651103f9863f8ede4f4a3de2f31ded97 100644 (file)
@@ -171,6 +171,11 @@ DROP FUNCTION IF EXISTS geometry_distance_box_nd(geometry,geometry); -- temporar
 
 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;