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

Commit67e7f0a

Browse files
committed
Add uninstall script
1 parentd3f54c7 commit67e7f0a

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

‎contrib/hstore/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ MODULE_big = hstore
99
OBJS = hstore_io.o hstore_op.o hstore_gist.o crc32.o
1010

1111
DATA_built = hstore.sql
12+
DATA = uninstall_hstore.sql
1213
DOCS = README.hstore
1314
REGRESS = hstore
1415

‎contrib/hstore/uninstall_hstore.sql

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
BEGIN;
2+
3+
DROPOPERATOR CLASS gist_hstore_ops USING gist CASCADE;
4+
5+
DROPOPERATOR->( hstore,text );
6+
DROPOPERATOR||( hstore, hstore );
7+
DROPOPERATOR @>( hstore, hstore );
8+
DROPOPERATOR<@( hstore, hstore );
9+
DROPOPERATOR @( hstore, hstore );
10+
DROPOPERATOR ~( hstore, hstore );
11+
DROPOPERATOR=>(text,text );
12+
13+
14+
DROPFUNCTION fetchval(hstore,text);
15+
DROPFUNCTION isexists(hstore,text);
16+
DROPFUNCTION isdefined(hstore,text);
17+
DROPFUNCTIONdelete(hstore,text);
18+
DROPFUNCTION hs_concat(hstore,hstore);
19+
DROPFUNCTION hs_contains(hstore,hstore);
20+
DROPFUNCTION hs_contained(hstore,hstore);
21+
DROPFUNCTION tconvert(text,text);
22+
DROPFUNCTION akeys(hstore);
23+
DROPFUNCTION avals(hstore);
24+
DROPFUNCTION skeys(hstore);
25+
DROPFUNCTION svals(hstore);
26+
DROPFUNCTION each(hstore);
27+
DROPFUNCTION ghstore_compress(internal);
28+
DROPFUNCTION ghstore_decompress(internal);
29+
DROPFUNCTION ghstore_penalty(internal,internal,internal);
30+
DROPFUNCTION ghstore_picksplit(internal, internal);
31+
DROPFUNCTION ghstore_union(internal, internal);
32+
DROPFUNCTION ghstore_same(internal, internal, internal);
33+
DROPFUNCTION ghstore_consistent(internal,internal,int4);
34+
35+
DROPTYPE hstore CASCADE;
36+
DROPTYPE hs_each CASCADE;
37+
DROPTYPE ghstore CASCADE;
38+
39+
COMMIT;

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp