File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
- /* $PostgreSQL: pgsql/contrib/isn/uninstall_isn.sql,v 1.3 2007 /11/13 04:24:28 momjian Exp $ */
1
+ /* $PostgreSQL: pgsql/contrib/isn/uninstall_isn.sql,v 1.4 2008 /11/28 21:19:13 tgl Exp $ */
2
2
3
3
-- Adjust this setting to control where the objects get dropped.
4
4
SET search_path = public;
5
5
6
+ -- Drop the operator families (which don't depend on the types)
7
+ DROP OPERATOR FAMILY isn_ops USING btree CASCADE;
8
+ DROP OPERATOR FAMILY isn_ops USING hash CASCADE;
9
+
6
10
--
7
11
-- Drop the actual types (in cascade):
8
12
--
@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
15
19
DROP TYPE issn CASCADE;
16
20
DROP TYPE upc CASCADE;
17
21
22
+ -- and clean up a couple miscellaneous functions
18
23
DROP FUNCTION isn_weak();
19
24
DROP FUNCTION isn_weak(boolean );
20
-
You can’t perform that action at this time.
0 commit comments