3 -- Adjust this setting to control where the objects get dropped.
4 SET search_path = public;
6 DROP OPERATOR CLASS gist_hstore_ops USING gist CASCADE;
7 DROP OPERATOR CLASS gin_hstore_ops USING gin CASCADE;
9 DROP OPERATOR ? ( hstore, text );
10 DROP OPERATOR ->( hstore, text );
11 DROP OPERATOR ||( hstore, hstore );
12 DROP OPERATOR @>( hstore, hstore );
13 DROP OPERATOR <@( hstore, hstore );
14 DROP OPERATOR @( hstore, hstore );
15 DROP OPERATOR ~( hstore, hstore );
16 DROP OPERATOR =>( text, text );
19 DROP FUNCTION fetchval(hstore,text);
20 DROP FUNCTION isexists(hstore,text);
21 DROP FUNCTION exist(hstore,text);
22 DROP FUNCTION isdefined(hstore,text);
23 DROP FUNCTION defined(hstore,text);
24 DROP FUNCTION delete(hstore,text);
25 DROP FUNCTION hs_concat(hstore,hstore);
26 DROP FUNCTION hs_contains(hstore,hstore);
27 DROP FUNCTION hs_contained(hstore,hstore);
28 DROP FUNCTION tconvert(text,text);
29 DROP FUNCTION akeys(hstore);
30 DROP FUNCTION avals(hstore);
31 DROP FUNCTION skeys(hstore);
32 DROP FUNCTION svals(hstore);
33 DROP FUNCTION each(hstore);
34 DROP FUNCTION ghstore_compress(internal);
35 DROP FUNCTION ghstore_decompress(internal);
36 DROP FUNCTION ghstore_penalty(internal,internal,internal);
37 DROP FUNCTION ghstore_picksplit(internal, internal);
38 DROP FUNCTION ghstore_union(internal, internal);
39 DROP FUNCTION ghstore_same(internal, internal, internal);
40 DROP FUNCTION ghstore_consistent(internal,internal,int,oid,internal);
41 DROP FUNCTION gin_consistent_hstore(internal, int2, internal, int4, internal, internal);
42 DROP FUNCTION gin_extract_hstore(internal, internal);
43 DROP FUNCTION gin_extract_hstore_query(internal, internal, smallint, internal, internal);
45 DROP TYPE hstore CASCADE;
46 DROP TYPE ghstore CASCADE;