We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent213256c commit4cee672Copy full SHA for 4cee672
contrib/isn/uninstall_isn.sql
@@ -1,8 +1,12 @@
1
-/* $PostgreSQL: pgsql/contrib/isn/uninstall_isn.sql,v 1.3 2007/11/13 04:24:28 momjian Exp $*/
+/* $PostgreSQL: pgsql/contrib/isn/uninstall_isn.sql,v 1.4 2008/11/28 21:19:13 tgl Exp $*/
2
3
-- Adjust this setting to control where the objects get dropped.
4
SET search_path= public;
5
6
+-- Drop the operator families (which don't depend on the types)
7
+DROPOPERATOR FAMILY isn_ops USING btree CASCADE;
8
+DROPOPERATOR FAMILY isn_ops USING hash CASCADE;
9
+
10
--
11
--Drop the actual types (in cascade):
12
@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
15
19
DROPTYPE issn CASCADE;
16
20
DROPTYPE upc CASCADE;
17
21
22
+-- and clean up a couple miscellaneous functions
18
23
DROPFUNCTION isn_weak();
24
DROPFUNCTION isn_weak(boolean);
-