]> granicus.if.org Git - postgis/commitdiff
Drop operator families, not classes (#543)
authorSandro Santilli <strk@keybit.net>
Thu, 22 Dec 2011 11:20:10 +0000 (11:20 +0000)
committerSandro Santilli <strk@keybit.net>
Thu, 22 Dec 2011 11:20:10 +0000 (11:20 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8510 b70326c6-7e19-0410-871a-916f4a2858ee

postgis/uninstall_geography.sql.in.c
postgis/uninstall_postgis.sql.in.c

index ce69e095508fb70cff8f301ae1d21a7a4be182f6..f1e375b2becd998d55a2724d033924f0bdb676d4 100644 (file)
@@ -15,8 +15,8 @@
 DROP VIEW geography_columns; 
 
 -- indexes
-DROP OPERATOR CLASS gist_geography_ops USING gist CASCADE;
-DROP OPERATOR CLASS btree_geography_ops USING btree CASCADE;
+DROP OPERATOR FAMILY gist_geography_ops USING gist CASCADE;
+DROP OPERATOR FAMILY btree_geography_ops USING btree CASCADE;
 
 -- r-tree operator
 DROP OPERATOR && (geography,geography);
index a4994ce09074a209a01e79236556c2ccabac93b9..b839ffa2f46838e523fedcb49bf9dc4a022f2dfa 100644 (file)
@@ -477,7 +477,7 @@ DROP FUNCTION postgis_type_name(character varying, integer, boolean);
 -- GIST opclass index binding entries.
 -------------------------------------------
 
-DROP OPERATOR CLASS gist_geometry_ops_2d USING gist CASCADE;
+DROP OPERATOR FAMILY gist_geometry_ops_2d USING gist CASCADE;
 
 -- gist support functions
 
@@ -489,6 +489,8 @@ 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 OPERATOR FAMILY gist_geometry_ops_nd USING gist CASCADE;
+
 DROP FUNCTION geometry_gist_compress_nd(internal);
 DROP FUNCTION geometry_gist_decompress_nd(internal);
 DROP FUNCTION geometry_gist_penalty_nd(internal, internal, internal);
@@ -536,6 +538,7 @@ DROP FUNCTION geometry_gist_sel_2d (internal, oid, internal, int4);
 --
 
 DROP OPERATOR CLASS btree_geometry_ops USING btree;
+DROP OPERATOR FAMILY btree_geometry_ops USING btree;
 DROP OPERATOR > (geometry,geometry);
 DROP OPERATOR >= (geometry,geometry);
 DROP OPERATOR = (geometry,geometry);