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
67e7f0ab
Commit
67e7f0ab
authored
Sep 12, 2006
by
Teodor Sigaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add uninstall script
parent
d3f54c79
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
0 deletions
+40
-0
contrib/hstore/Makefile
contrib/hstore/Makefile
+1
-0
contrib/hstore/uninstall_hstore.sql
contrib/hstore/uninstall_hstore.sql
+39
-0
No files found.
contrib/hstore/Makefile
View file @
67e7f0ab
...
@@ -9,6 +9,7 @@ MODULE_big = hstore
...
@@ -9,6 +9,7 @@ MODULE_big = hstore
OBJS
=
hstore_io.o hstore_op.o hstore_gist.o crc32.o
OBJS
=
hstore_io.o hstore_op.o hstore_gist.o crc32.o
DATA_built
=
hstore.sql
DATA_built
=
hstore.sql
DATA
=
uninstall_hstore.sql
DOCS
=
README.hstore
DOCS
=
README.hstore
REGRESS
=
hstore
REGRESS
=
hstore
...
...
contrib/hstore/uninstall_hstore.sql
0 → 100644
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
;
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