Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4cee6721
Commit
4cee6721
authored
Nov 28, 2008
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix an oversight in uninstall_isn.sql: must drop operator families explicitly.
parent
213256cf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
contrib/isn/uninstall_isn.sql
contrib/isn/uninstall_isn.sql
+6
-2
No files found.
contrib/isn/uninstall_isn.sql
View file @
4cee6721
/* $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.
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):
--
...
...
@@ -15,6 +19,6 @@ DROP TYPE ismn CASCADE;
DROP
TYPE
issn
CASCADE
;
DROP
TYPE
upc
CASCADE
;
-- and clean up a couple miscellaneous functions
DROP
FUNCTION
isn_weak
();
DROP
FUNCTION
isn_weak
(
boolean
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment