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 $ */
22
33-- Adjust this setting to control where the objects get dropped.
44SET search_path = public;
55
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+
610--
711-- Drop the actual types (in cascade):
812--
@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
1519DROP TYPE issn CASCADE;
1620DROP TYPE upc CASCADE;
1721
22+ -- and clean up a couple miscellaneous functions
1823DROP FUNCTION isn_weak();
1924DROP FUNCTION isn_weak(boolean );
20-
You can’t perform that action at this time.
0 commit comments