Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4cee672

Browse files
committed
Fix an oversight in uninstall_isn.sql: must drop operator families explicitly.
1 parent213256c commit4cee672

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

‎contrib/isn/uninstall_isn.sql

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
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.
44
SET search_path= public;
55

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+
610
--
711
--Drop the actual types (in cascade):
812
--
@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
1519
DROPTYPE issn CASCADE;
1620
DROPTYPE upc CASCADE;
1721

22+
-- and clean up a couple miscellaneous functions
1823
DROPFUNCTION isn_weak();
1924
DROPFUNCTION isn_weak(boolean);
20-

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp