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

Commitfe83b3e

Browse files
committed
contrib uninstall scripts
by David Fetter
1 parentd46fbef commitfe83b3e

34 files changed

+1222
-12
lines changed

‎contrib/btree_gist/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ OBJS = btree_gist.o btree_utils_num.o btree_utils_var.o btree_int2.o btre
77
btree_bytea.o btree_bit.o btree_numeric.o
88

99
DATA_built = btree_gist.sql
10+
DATA = uninstall_btree_gist.sql
1011
DOCS = README.btree_gist
1112

1213
REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz time timetz\
Lines changed: 301 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,301 @@
1+
SET search_path= public;
2+
3+
DROPOPERATOR CLASS gist_cidr_ops;
4+
5+
DROPOPERATOR CLASS gist_inet_ops;
6+
7+
DROPFUNCTION gbt_inet_same(internal, internal, internal);
8+
9+
DROPFUNCTION gbt_inet_union(bytea, internal);
10+
11+
DROPFUNCTION gbt_inet_picksplit(internal, internal);
12+
13+
DROPFUNCTION gbt_inet_penalty(internal,internal,internal);
14+
15+
DROPFUNCTION gbt_cidr_compress(internal);
16+
17+
DROPFUNCTION gbt_inet_compress(internal);
18+
19+
DROPFUNCTION gbt_cidr_consistent(internal,cidr,int2);
20+
21+
DROPFUNCTION gbt_inet_consistent(internal,inet,int2);
22+
23+
DROPOPERATOR CLASS gist_vbit_ops;
24+
25+
DROPOPERATOR CLASS gist_bit_ops;
26+
27+
DROPFUNCTION gbt_bit_same(internal, internal, internal);
28+
29+
DROPFUNCTION gbt_bit_union(bytea, internal);
30+
31+
DROPFUNCTION gbt_bit_picksplit(internal, internal);
32+
33+
DROPFUNCTION gbt_bit_penalty(internal,internal,internal);
34+
35+
DROPFUNCTION gbt_bit_compress(internal);
36+
37+
DROPFUNCTION gbt_bit_consistent(internal,bit,int2);
38+
39+
DROPOPERATOR CLASS gist_numeric_ops;
40+
41+
DROPFUNCTION gbt_numeric_same(internal, internal, internal);
42+
43+
DROPFUNCTION gbt_numeric_union(bytea, internal);
44+
45+
DROPFUNCTION gbt_numeric_picksplit(internal, internal);
46+
47+
DROPFUNCTION gbt_numeric_penalty(internal,internal,internal);
48+
49+
DROPFUNCTION gbt_numeric_compress(internal);
50+
51+
DROPFUNCTION gbt_numeric_consistent(internal,numeric,int2);
52+
53+
DROPOPERATOR CLASS gist_bytea_ops;
54+
55+
DROPFUNCTION gbt_bytea_same(internal, internal, internal);
56+
57+
DROPFUNCTION gbt_bytea_union(bytea, internal);
58+
59+
DROPFUNCTION gbt_bytea_picksplit(internal, internal);
60+
61+
DROPFUNCTION gbt_bytea_penalty(internal,internal,internal);
62+
63+
DROPFUNCTION gbt_bytea_compress(internal);
64+
65+
DROPFUNCTION gbt_bytea_consistent(internal,bytea,int2);
66+
67+
DROPOPERATOR CLASS gist_bpchar_ops;
68+
69+
DROPOPERATOR CLASS gist_text_ops;
70+
71+
DROPFUNCTION gbt_text_same(internal, internal, internal);
72+
73+
DROPFUNCTION gbt_text_union(bytea, internal);
74+
75+
DROPFUNCTION gbt_text_picksplit(internal, internal);
76+
77+
DROPFUNCTION gbt_text_penalty(internal,internal,internal);
78+
79+
DROPFUNCTION gbt_bpchar_compress(internal);
80+
81+
DROPFUNCTION gbt_text_compress(internal);
82+
83+
DROPFUNCTION gbt_bpchar_consistent(internal,bpchar,int2);
84+
85+
DROPFUNCTION gbt_text_consistent(internal,text,int2);
86+
87+
DROPOPERATOR CLASS gist_macaddr_ops;
88+
89+
DROPFUNCTION gbt_macad_same(internal, internal, internal);
90+
91+
DROPFUNCTION gbt_macad_union(bytea, internal);
92+
93+
DROPFUNCTION gbt_macad_picksplit(internal, internal);
94+
95+
DROPFUNCTION gbt_macad_penalty(internal,internal,internal);
96+
97+
DROPFUNCTION gbt_macad_compress(internal);
98+
99+
DROPFUNCTION gbt_macad_consistent(internal,macaddr,int2);
100+
101+
DROPOPERATOR CLASS gist_cash_ops;
102+
103+
DROPFUNCTION gbt_cash_same(internal, internal, internal);
104+
105+
DROPFUNCTION gbt_cash_union(bytea, internal);
106+
107+
DROPFUNCTION gbt_cash_picksplit(internal, internal);
108+
109+
DROPFUNCTION gbt_cash_penalty(internal,internal,internal);
110+
111+
DROPFUNCTION gbt_cash_compress(internal);
112+
113+
DROPFUNCTION gbt_cash_consistent(internal,money,int2);
114+
115+
DROPOPERATOR CLASS gist_interval_ops;
116+
117+
DROPFUNCTION gbt_intv_same(internal, internal, internal);
118+
119+
DROPFUNCTION gbt_intv_union(bytea, internal);
120+
121+
DROPFUNCTION gbt_intv_picksplit(internal, internal);
122+
123+
DROPFUNCTION gbt_intv_penalty(internal,internal,internal);
124+
125+
DROPFUNCTION gbt_intv_decompress(internal);
126+
127+
DROPFUNCTION gbt_intv_compress(internal);
128+
129+
DROPFUNCTION gbt_intv_consistent(internal,interval,int2);
130+
131+
DROPOPERATOR CLASS gist_date_ops;
132+
133+
DROPFUNCTION gbt_date_same(internal, internal, internal);
134+
135+
DROPFUNCTION gbt_date_union(bytea, internal);
136+
137+
DROPFUNCTION gbt_date_picksplit(internal, internal);
138+
139+
DROPFUNCTION gbt_date_penalty(internal,internal,internal);
140+
141+
DROPFUNCTION gbt_date_compress(internal);
142+
143+
DROPFUNCTION gbt_date_consistent(internal,date,int2);
144+
145+
DROPOPERATOR CLASS gist_timetz_ops;
146+
147+
DROPOPERATOR CLASS gist_time_ops;
148+
149+
DROPFUNCTION gbt_time_same(internal, internal, internal);
150+
151+
DROPFUNCTION gbt_time_union(bytea, internal);
152+
153+
DROPFUNCTION gbt_time_picksplit(internal, internal);
154+
155+
DROPFUNCTION gbt_time_penalty(internal,internal,internal);
156+
157+
DROPFUNCTION gbt_timetz_compress(internal);
158+
159+
DROPFUNCTION gbt_time_compress(internal);
160+
161+
DROPFUNCTION gbt_timetz_consistent(internal,timetz,int2);
162+
163+
DROPFUNCTION gbt_time_consistent(internal,time,int2);
164+
165+
DROPOPERATOR CLASS gist_timestamptz_ops;
166+
167+
DROPOPERATOR CLASS gist_timestamp_ops;
168+
169+
DROPFUNCTION gbt_ts_same(internal, internal, internal);
170+
171+
DROPFUNCTION gbt_ts_union(bytea, internal);
172+
173+
DROPFUNCTION gbt_ts_picksplit(internal, internal);
174+
175+
DROPFUNCTION gbt_ts_penalty(internal,internal,internal);
176+
177+
DROPFUNCTION gbt_tstz_compress(internal);
178+
179+
DROPFUNCTION gbt_ts_compress(internal);
180+
181+
DROPFUNCTION gbt_tstz_consistent(internal,timestamptz,int2);
182+
183+
DROPFUNCTION gbt_ts_consistent(internal,timestamp,int2);
184+
185+
DROPOPERATOR CLASS gist_float8_ops;
186+
187+
DROPFUNCTION gbt_float8_same(internal, internal, internal);
188+
189+
DROPFUNCTION gbt_float8_union(bytea, internal);
190+
191+
DROPFUNCTION gbt_float8_picksplit(internal, internal);
192+
193+
DROPFUNCTION gbt_float8_penalty(internal,internal,internal);
194+
195+
DROPFUNCTION gbt_float8_compress(internal);
196+
197+
DROPFUNCTION gbt_float8_consistent(internal,float8,int2);
198+
199+
DROPOPERATOR CLASS gist_float4_ops;
200+
201+
DROPFUNCTION gbt_float4_same(internal, internal, internal);
202+
203+
DROPFUNCTION gbt_float4_union(bytea, internal);
204+
205+
DROPFUNCTION gbt_float4_picksplit(internal, internal);
206+
207+
DROPFUNCTION gbt_float4_penalty(internal,internal,internal);
208+
209+
DROPFUNCTION gbt_float4_compress(internal);
210+
211+
DROPFUNCTION gbt_float4_consistent(internal,float4,int2);
212+
213+
DROPOPERATOR CLASS gist_int8_ops;
214+
215+
DROPFUNCTION gbt_int8_same(internal, internal, internal);
216+
217+
DROPFUNCTION gbt_int8_union(bytea, internal);
218+
219+
DROPFUNCTION gbt_int8_picksplit(internal, internal);
220+
221+
DROPFUNCTION gbt_int8_penalty(internal,internal,internal);
222+
223+
DROPFUNCTION gbt_int8_compress(internal);
224+
225+
DROPFUNCTION gbt_int8_consistent(internal,int8,int2);
226+
227+
DROPOPERATOR CLASS gist_int4_ops;
228+
229+
DROPFUNCTION gbt_int4_same(internal, internal, internal);
230+
231+
DROPFUNCTION gbt_int4_union(bytea, internal);
232+
233+
DROPFUNCTION gbt_int4_picksplit(internal, internal);
234+
235+
DROPFUNCTION gbt_int4_penalty(internal,internal,internal);
236+
237+
DROPFUNCTION gbt_int4_compress(internal);
238+
239+
DROPFUNCTION gbt_int4_consistent(internal,int4,int2);
240+
241+
DROPOPERATOR CLASS gist_int2_ops;
242+
243+
DROPFUNCTION gbt_int2_same(internal, internal, internal);
244+
245+
DROPFUNCTION gbt_int2_union(bytea, internal);
246+
247+
DROPFUNCTION gbt_int2_picksplit(internal, internal);
248+
249+
DROPFUNCTION gbt_int2_penalty(internal,internal,internal);
250+
251+
DROPFUNCTION gbt_int2_compress(internal);
252+
253+
DROPFUNCTION gbt_int2_consistent(internal,int2,int2);
254+
255+
DROPOPERATOR CLASS gist_oid_ops;
256+
257+
DROPFUNCTION gbt_oid_same(internal, internal, internal);
258+
259+
DROPFUNCTION gbt_oid_union(bytea, internal);
260+
261+
DROPFUNCTION gbt_oid_picksplit(internal, internal);
262+
263+
DROPFUNCTION gbt_oid_penalty(internal,internal,internal);
264+
265+
DROPFUNCTION gbt_var_decompress(internal);
266+
267+
DROPFUNCTION gbt_decompress(internal);
268+
269+
DROPFUNCTION gbt_oid_compress(internal);
270+
271+
DROPFUNCTION gbt_oid_consistent(internal,oid,int2);
272+
273+
DROPTYPE gbtreekey_var;
274+
275+
DROPFUNCTION gbtreekey_var_out(gbtreekey_var);
276+
277+
DROPFUNCTION gbtreekey_var_in(cstring);
278+
279+
DROPTYPE gbtreekey32;
280+
281+
DROPFUNCTION gbtreekey32_out(gbtreekey32);
282+
283+
DROPFUNCTION gbtreekey32_in(cstring);
284+
285+
DROPTYPE gbtreekey16;
286+
287+
DROPFUNCTION gbtreekey16_out(gbtreekey16);
288+
289+
DROPFUNCTION gbtreekey16_in(cstring);
290+
291+
DROPTYPE gbtreekey8;
292+
293+
DROPFUNCTION gbtreekey8_out(gbtreekey8);
294+
295+
DROPFUNCTION gbtreekey8_in(cstring);
296+
297+
DROPTYPE gbtreekey4;
298+
299+
DROPFUNCTION gbtreekey4_out(gbtreekey4);
300+
301+
DROPFUNCTION gbtreekey4_in(cstring);

‎contrib/chkpass/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.7 2005/09/2717:13:00 tgl Exp $
1+
# $PostgreSQL: pgsql/contrib/chkpass/Makefile,v 1.8 2006/02/2712:54:38 petere Exp $
22

33
MODULE_big = chkpass
44
OBJS = chkpass.o
55
SHLIB_LINK =$(filter -lcrypt,$(LIBS))
66
DATA_built = chkpass.sql
7+
DATA = uninstall_chkpass.sql
78
DOCS = README.chkpass
89

910
ifdefUSE_PGXS

‎contrib/chkpass/uninstall_chkpass.sql

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
SET search_path= public;
2+
3+
DROPOPERATOR<>; (
4+
leftarg= chkpass,
5+
rightarg=text,
6+
negator==,
7+
procedure= ne
8+
);
9+
10+
DROPOPERATOR=; (
11+
leftarg= chkpass,
12+
rightarg=text,
13+
commutator==,
14+
--negator = <>,
15+
procedure= eq
16+
);
17+
18+
DROPFUNCTION ne(chkpass,text);
19+
20+
DROPFUNCTION eq(chkpass,text);
21+
22+
DROPFUNCTION raw(chkpass);
23+
24+
DROPTYPE chkpass;
25+
26+
DROPFUNCTION chkpass_out(chkpass);
27+
28+
DROPFUNCTION chkpass_in(cstring);

‎contrib/cube/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.15 2005/10/18 01:30:48 tgl Exp $
1+
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.16 2006/02/27 12:54:38 petere Exp $
22

33
MODULE_big = cube
44
OBJS= cube.o cubeparse.o
55

66
DATA_built = cube.sql
7+
DATA = uninstall_cube.sql
78
DOCS = README.cube
89
REGRESS = cube
910

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp