2009-10-01 03:50:22 +08:00
|
|
|
/* $PostgreSQL: pgsql/contrib/hstore/uninstall_hstore.sql,v 1.9 2009/09/30 19:50:22 tgl Exp $ */
|
2007-11-13 12:24:29 +08:00
|
|
|
|
2007-11-11 11:25:35 +08:00
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
|
|
SET search_path = public;
|
2006-09-13 00:11:44 +08:00
|
|
|
|
|
|
|
DROP OPERATOR CLASS gist_hstore_ops USING gist CASCADE;
|
2007-03-14 22:21:53 +08:00
|
|
|
DROP OPERATOR CLASS gin_hstore_ops USING gin CASCADE;
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP OPERATOR CLASS hash_hstore_ops USING hash CASCADE;
|
|
|
|
DROP OPERATOR CLASS btree_hstore_ops USING btree CASCADE;
|
2006-09-13 00:11:44 +08:00
|
|
|
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP OPERATOR - ( hstore, text );
|
|
|
|
DROP OPERATOR - ( hstore, text[] );
|
|
|
|
DROP OPERATOR - ( hstore, hstore );
|
|
|
|
DROP OPERATOR ? ( hstore, text );
|
|
|
|
DROP OPERATOR ?& ( hstore, text[] );
|
|
|
|
DROP OPERATOR ?| ( hstore, text[] );
|
|
|
|
DROP OPERATOR -> ( hstore, text );
|
|
|
|
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 OPERATOR => ( text[], text[] );
|
|
|
|
DROP OPERATOR => ( hstore, text[] );
|
|
|
|
DROP OPERATOR #= ( anyelement, hstore );
|
|
|
|
DROP OPERATOR %% ( NONE, hstore );
|
|
|
|
DROP OPERATOR %# ( NONE, hstore );
|
|
|
|
DROP OPERATOR = ( hstore, hstore );
|
|
|
|
DROP OPERATOR <> ( hstore, hstore );
|
|
|
|
DROP OPERATOR #<# ( hstore, hstore );
|
|
|
|
DROP OPERATOR #<=# ( hstore, hstore );
|
|
|
|
DROP OPERATOR #># ( hstore, hstore );
|
|
|
|
DROP OPERATOR #>=# ( hstore, hstore );
|
2006-09-13 00:11:44 +08:00
|
|
|
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP CAST (text[] AS hstore);
|
2006-09-13 00:11:44 +08:00
|
|
|
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION hstore_eq(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_ne(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_gt(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_ge(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_lt(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_le(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_cmp(hstore,hstore);
|
|
|
|
DROP FUNCTION hstore_hash(hstore);
|
|
|
|
DROP FUNCTION slice_array(hstore,text[]);
|
|
|
|
DROP FUNCTION slice_hstore(hstore,text[]);
|
2006-09-13 00:11:44 +08:00
|
|
|
DROP FUNCTION fetchval(hstore,text);
|
|
|
|
DROP FUNCTION isexists(hstore,text);
|
2006-10-12 00:42:51 +08:00
|
|
|
DROP FUNCTION exist(hstore,text);
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION exists_any(hstore,text[]);
|
|
|
|
DROP FUNCTION exists_all(hstore,text[]);
|
2006-09-13 00:11:44 +08:00
|
|
|
DROP FUNCTION isdefined(hstore,text);
|
2006-10-12 00:42:51 +08:00
|
|
|
DROP FUNCTION defined(hstore,text);
|
2006-09-13 00:11:44 +08:00
|
|
|
DROP FUNCTION delete(hstore,text);
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION delete(hstore,text[]);
|
|
|
|
DROP FUNCTION delete(hstore,hstore);
|
2006-09-13 00:11:44 +08:00
|
|
|
DROP FUNCTION hs_concat(hstore,hstore);
|
|
|
|
DROP FUNCTION hs_contains(hstore,hstore);
|
|
|
|
DROP FUNCTION hs_contained(hstore,hstore);
|
|
|
|
DROP FUNCTION tconvert(text,text);
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION hstore(text,text);
|
|
|
|
DROP FUNCTION hstore(text[],text[]);
|
|
|
|
DROP FUNCTION hstore_to_array(hstore);
|
|
|
|
DROP FUNCTION hstore_to_matrix(hstore);
|
|
|
|
DROP FUNCTION hstore(record);
|
|
|
|
DROP FUNCTION hstore(text[]);
|
2006-09-13 00:11:44 +08:00
|
|
|
DROP FUNCTION akeys(hstore);
|
|
|
|
DROP FUNCTION avals(hstore);
|
|
|
|
DROP FUNCTION skeys(hstore);
|
|
|
|
DROP FUNCTION svals(hstore);
|
|
|
|
DROP FUNCTION each(hstore);
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION populate_record(anyelement,hstore);
|
2006-09-13 00:11:44 +08:00
|
|
|
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);
|
2008-04-15 01:05:34 +08:00
|
|
|
DROP FUNCTION ghstore_consistent(internal,internal,int,oid,internal);
|
2009-03-26 06:19:02 +08:00
|
|
|
DROP FUNCTION gin_consistent_hstore(internal, int2, internal, int4, internal, internal);
|
2007-03-14 22:21:53 +08:00
|
|
|
DROP FUNCTION gin_extract_hstore(internal, internal);
|
2009-03-26 06:19:02 +08:00
|
|
|
DROP FUNCTION gin_extract_hstore_query(internal, internal, smallint, internal, internal);
|
2009-10-01 03:50:22 +08:00
|
|
|
DROP FUNCTION hstore_version_diag(hstore);
|
2006-09-13 00:11:44 +08:00
|
|
|
|
|
|
|
DROP TYPE hstore CASCADE;
|
|
|
|
DROP TYPE ghstore CASCADE;
|