|
| 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; |