]> granicus.if.org Git - postgis/commitdiff
Add more uninstall objects found by uninstall test (#1397)
authorSandro Santilli <strk@keybit.net>
Thu, 22 Dec 2011 11:20:01 +0000 (11:20 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 22 Dec 2011 11:20:01 +0000 (11:20 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8508 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/uninstall_postgis.sql.in.c

index 7a4dfeb09de71908bd974c6534b8c68b68d0cd3b..a4994ce09074a209a01e79236556c2ccabac93b9 100644 (file)
@@ -207,6 +207,7 @@ DROP FUNCTION _ST_Touches(geometry,geometry);
 DROP FUNCTION ST_Disjoint(geometry,geometry);
 DROP FUNCTION ST_Relate(geometry,geometry,text);
 DROP FUNCTION ST_relate(geometry,geometry);
+DROP FUNCTION st_relatematch(text, text);
 
 --------------------------------------------------------------------------------
 -- Aggregates and their supporting functions
@@ -464,6 +465,13 @@ DROP FUNCTION ST_mem_size(geometry);
 
 DROP FUNCTION postgis_getBBOX(geometry);
 DROP FUNCTION getSRID(geometry); 
+DROP FUNCTION postgis_cache_bbox();
+DROP FUNCTION postgis_constraint_dims(text, text, text);
+DROP FUNCTION postgis_constraint_srid(text, text, text);
+DROP FUNCTION postgis_constraint_type(text, text, text);
+DROP FUNCTION postgis_type_name(character varying, integer, boolean);
+
+
 
 -------------------------------------------
 -- GIST opclass index binding entries.
@@ -472,6 +480,7 @@ DROP FUNCTION getSRID(geometry);
 DROP OPERATOR CLASS gist_geometry_ops_2d USING gist CASCADE;
 
 -- gist support functions
+
 DROP FUNCTION geometry_gist_decompress_2d(internal);
 DROP FUNCTION geometry_gist_same_2d(geometry, geometry, internal);
 DROP FUNCTION geometry_gist_union_2d(bytea, internal);
@@ -480,6 +489,12 @@ DROP FUNCTION geometry_gist_penalty_2d(internal,internal,internal);
 DROP FUNCTION geometry_gist_compress_2d(internal);
 DROP FUNCTION geometry_gist_consistent_2d(internal,geometry,int4);
 
+DROP FUNCTION geometry_gist_compress_nd(internal);
+DROP FUNCTION geometry_gist_decompress_nd(internal);
+DROP FUNCTION geometry_gist_penalty_nd(internal, internal, internal);
+DROP FUNCTION geometry_gist_picksplit_nd(internal, internal);
+DROP FUNCTION geometry_gist_union_nd(bytea, internal);
+
 -- GEOMETRY operators
 
 DROP OPERATOR ~ (geometry,geometry);
@@ -548,6 +563,12 @@ DROP FUNCTION geometry_lt(geometry, geometry);
 -- This drops ST_box2d_in, ST_box2d_out, box2d_in, box2d_out and the type in an atomic fashion
 DROP TYPE box2d CASCADE;
 
+-----------------------------------------------------------------------
+-- BOX2Df
+-----------------------------------------------------------------------
+
+-- This drops box2df_in, box2df_out and the type in an atomic fashion
+DROP TYPE box2df CASCADE;
 
 
 -------------------------------------------------------------------
@@ -598,7 +619,15 @@ DROP TYPE geometry_dump CASCADE;
 
 DROP TYPE geometry CASCADE;
 
+-- typmod stuff 
+
 DROP FUNCTION geometry_analyze(internal);
+DROP FUNCTION geometry_typmod_in(cstring[]);
+DROP FUNCTION geometry_typmod_out(integer);
+
+DROP FUNCTION postgis_typmod_dims(integer);
+DROP FUNCTION postgis_typmod_srid(integer);
+DROP FUNCTION postgis_typmod_type(integer);
 
 -------------------------------------------------------------------
 --  SPHEROID TYPE
@@ -607,5 +636,10 @@ DROP FUNCTION geometry_analyze(internal);
 -- This drops ST_spheroid_out, spheroid_out, ST_spheroid_in, spheroid_in and the type in an atomic fashion
 DROP TYPE spheroid CASCADE;
 
+-------------------------------------------------------------------
+--  valid_detail
+-------------------------------------------------------------------
+
+DROP TYPE valid_detail CASCADE;
 
 COMMIT;