Commit 4cee6721 authored by Tom Lane's avatar Tom Lane

Fix an oversight in uninstall_isn.sql: must drop operator families explicitly.

parent 213256cf
/* $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 $ */
-- Adjust this setting to control where the objects get dropped. -- Adjust this setting to control where the objects get dropped.
SET search_path = public; SET search_path = public;
-- Drop the operator families (which don't depend on the types)
DROP OPERATOR FAMILY isn_ops USING btree CASCADE;
DROP OPERATOR FAMILY isn_ops USING hash CASCADE;
-- --
-- Drop the actual types (in cascade): -- Drop the actual types (in cascade):
-- --
...@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE; ...@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
DROP TYPE issn CASCADE; DROP TYPE issn CASCADE;
DROP TYPE upc CASCADE; DROP TYPE upc CASCADE;
-- and clean up a couple miscellaneous functions
DROP FUNCTION isn_weak(); DROP FUNCTION isn_weak();
DROP FUNCTION isn_weak(boolean); DROP FUNCTION isn_weak(boolean);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment