Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
67e7f0ab
Commit
67e7f0ab
authored
18 years ago
by
Teodor Sigaev
Browse files
Options
Downloads
Patches
Plain Diff
Add uninstall script
parent
d3f54c79
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
contrib/hstore/Makefile
+1
-0
1 addition, 0 deletions
contrib/hstore/Makefile
contrib/hstore/uninstall_hstore.sql
+39
-0
39 additions, 0 deletions
contrib/hstore/uninstall_hstore.sql
with
40 additions
and
0 deletions
contrib/hstore/Makefile
+
1
−
0
View file @
67e7f0ab
...
...
@@ -9,6 +9,7 @@ MODULE_big = hstore
OBJS
=
hstore_io.o hstore_op.o hstore_gist.o crc32.o
DATA_built
=
hstore.sql
DATA
=
uninstall_hstore.sql
DOCS
=
README.hstore
REGRESS
=
hstore
...
...
This diff is collapsed.
Click to expand it.
contrib/hstore/uninstall_hstore.sql
0 → 100644
+
39
−
0
View file @
67e7f0ab
BEGIN
;
DROP
OPERATOR
CLASS
gist_hstore_ops
USING
gist
CASCADE
;
DROP
OPERATOR
->
(
hstore
,
text
);
DROP
OPERATOR
||
(
hstore
,
hstore
);
DROP
OPERATOR
@>
(
hstore
,
hstore
);
DROP
OPERATOR
<@
(
hstore
,
hstore
);
DROP
OPERATOR
@
(
hstore
,
hstore
);
DROP
OPERATOR
~
(
hstore
,
hstore
);
DROP
OPERATOR
=>
(
text
,
text
);
DROP
FUNCTION
fetchval
(
hstore
,
text
);
DROP
FUNCTION
isexists
(
hstore
,
text
);
DROP
FUNCTION
isdefined
(
hstore
,
text
);
DROP
FUNCTION
delete
(
hstore
,
text
);
DROP
FUNCTION
hs_concat
(
hstore
,
hstore
);
DROP
FUNCTION
hs_contains
(
hstore
,
hstore
);
DROP
FUNCTION
hs_contained
(
hstore
,
hstore
);
DROP
FUNCTION
tconvert
(
text
,
text
);
DROP
FUNCTION
akeys
(
hstore
);
DROP
FUNCTION
avals
(
hstore
);
DROP
FUNCTION
skeys
(
hstore
);
DROP
FUNCTION
svals
(
hstore
);
DROP
FUNCTION
each
(
hstore
);
DROP
FUNCTION
ghstore_compress
(
internal
);
DROP
FUNCTION
ghstore_decompress
(
internal
);
DROP
FUNCTION
ghstore_penalty
(
internal
,
internal
,
internal
);
DROP
FUNCTION
ghstore_picksplit
(
internal
,
internal
);
DROP
FUNCTION
ghstore_union
(
internal
,
internal
);
DROP
FUNCTION
ghstore_same
(
internal
,
internal
,
internal
);
DROP
FUNCTION
ghstore_consistent
(
internal
,
internal
,
int4
);
DROP
TYPE
hstore
CASCADE
;
DROP
TYPE
hs_each
CASCADE
;
DROP
TYPE
ghstore
CASCADE
;
COMMIT
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment