mirror of https://github.com/postgres/postgres
parent
d46fbef386
commit
fe83b3ebc6
@ -0,0 +1,301 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS gist_cidr_ops; |
||||
|
||||
DROP OPERATOR CLASS gist_inet_ops; |
||||
|
||||
DROP FUNCTION gbt_inet_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_inet_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_inet_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_inet_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_cidr_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_inet_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_cidr_consistent(internal,cidr,int2); |
||||
|
||||
DROP FUNCTION gbt_inet_consistent(internal,inet,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_vbit_ops; |
||||
|
||||
DROP OPERATOR CLASS gist_bit_ops; |
||||
|
||||
DROP FUNCTION gbt_bit_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_bit_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_bit_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_bit_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_bit_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_bit_consistent(internal,bit,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_numeric_ops; |
||||
|
||||
DROP FUNCTION gbt_numeric_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_numeric_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_numeric_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_numeric_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_numeric_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_numeric_consistent(internal,numeric,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_bytea_ops; |
||||
|
||||
DROP FUNCTION gbt_bytea_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_bytea_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_bytea_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_bytea_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_bytea_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_bytea_consistent(internal,bytea,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_bpchar_ops; |
||||
|
||||
DROP OPERATOR CLASS gist_text_ops; |
||||
|
||||
DROP FUNCTION gbt_text_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_text_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_text_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_text_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_bpchar_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_text_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_bpchar_consistent(internal,bpchar,int2); |
||||
|
||||
DROP FUNCTION gbt_text_consistent(internal,text,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_macaddr_ops; |
||||
|
||||
DROP FUNCTION gbt_macad_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_macad_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_macad_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_macad_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_macad_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_macad_consistent(internal,macaddr,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_cash_ops; |
||||
|
||||
DROP FUNCTION gbt_cash_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_cash_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_cash_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_cash_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_cash_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_cash_consistent(internal,money,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_interval_ops; |
||||
|
||||
DROP FUNCTION gbt_intv_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_intv_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_intv_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_intv_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_intv_decompress(internal); |
||||
|
||||
DROP FUNCTION gbt_intv_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_intv_consistent(internal,interval,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_date_ops; |
||||
|
||||
DROP FUNCTION gbt_date_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_date_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_date_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_date_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_date_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_date_consistent(internal,date,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_timetz_ops; |
||||
|
||||
DROP OPERATOR CLASS gist_time_ops; |
||||
|
||||
DROP FUNCTION gbt_time_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_time_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_time_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_time_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_timetz_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_time_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_timetz_consistent(internal,timetz,int2); |
||||
|
||||
DROP FUNCTION gbt_time_consistent(internal,time,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_timestamptz_ops; |
||||
|
||||
DROP OPERATOR CLASS gist_timestamp_ops; |
||||
|
||||
DROP FUNCTION gbt_ts_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_ts_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_ts_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_ts_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_tstz_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_ts_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_tstz_consistent(internal,timestamptz,int2); |
||||
|
||||
DROP FUNCTION gbt_ts_consistent(internal,timestamp,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_float8_ops; |
||||
|
||||
DROP FUNCTION gbt_float8_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_float8_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_float8_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_float8_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_float8_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_float8_consistent(internal,float8,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_float4_ops; |
||||
|
||||
DROP FUNCTION gbt_float4_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_float4_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_float4_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_float4_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_float4_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_float4_consistent(internal,float4,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_int8_ops; |
||||
|
||||
DROP FUNCTION gbt_int8_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int8_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_int8_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int8_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_int8_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_int8_consistent(internal,int8,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_int4_ops; |
||||
|
||||
DROP FUNCTION gbt_int4_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int4_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_int4_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int4_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_int4_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_int4_consistent(internal,int4,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_int2_ops; |
||||
|
||||
DROP FUNCTION gbt_int2_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int2_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_int2_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_int2_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_int2_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_int2_consistent(internal,int2,int2); |
||||
|
||||
DROP OPERATOR CLASS gist_oid_ops; |
||||
|
||||
DROP FUNCTION gbt_oid_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION gbt_oid_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gbt_oid_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gbt_oid_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gbt_var_decompress(internal); |
||||
|
||||
DROP FUNCTION gbt_decompress(internal); |
||||
|
||||
DROP FUNCTION gbt_oid_compress(internal); |
||||
|
||||
DROP FUNCTION gbt_oid_consistent(internal,oid,int2); |
||||
|
||||
DROP TYPE gbtreekey_var; |
||||
|
||||
DROP FUNCTION gbtreekey_var_out(gbtreekey_var); |
||||
|
||||
DROP FUNCTION gbtreekey_var_in(cstring); |
||||
|
||||
DROP TYPE gbtreekey32; |
||||
|
||||
DROP FUNCTION gbtreekey32_out(gbtreekey32); |
||||
|
||||
DROP FUNCTION gbtreekey32_in(cstring); |
||||
|
||||
DROP TYPE gbtreekey16; |
||||
|
||||
DROP FUNCTION gbtreekey16_out(gbtreekey16); |
||||
|
||||
DROP FUNCTION gbtreekey16_in(cstring); |
||||
|
||||
DROP TYPE gbtreekey8; |
||||
|
||||
DROP FUNCTION gbtreekey8_out(gbtreekey8); |
||||
|
||||
DROP FUNCTION gbtreekey8_in(cstring); |
||||
|
||||
DROP TYPE gbtreekey4; |
||||
|
||||
DROP FUNCTION gbtreekey4_out(gbtreekey4); |
||||
|
||||
DROP FUNCTION gbtreekey4_in(cstring); |
@ -0,0 +1,28 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR <>; ( |
||||
leftarg = chkpass, |
||||
rightarg = text, |
||||
negator = =, |
||||
procedure = ne |
||||
); |
||||
|
||||
DROP OPERATOR =; ( |
||||
leftarg = chkpass, |
||||
rightarg = text, |
||||
commutator = =, |
||||
-- negator = <>, |
||||
procedure = eq |
||||
); |
||||
|
||||
DROP FUNCTION ne(chkpass, text); |
||||
|
||||
DROP FUNCTION eq(chkpass, text); |
||||
|
||||
DROP FUNCTION raw(chkpass); |
||||
|
||||
DROP TYPE chkpass; |
||||
|
||||
DROP FUNCTION chkpass_out(chkpass); |
||||
|
||||
DROP FUNCTION chkpass_in(cstring); |
@ -0,0 +1,93 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS gist_cube_ops; |
||||
|
||||
DROP OPERATOR CLASS cube_ops; |
||||
|
||||
DROP FUNCTION g_cube_same(cube, cube, internal); |
||||
|
||||
DROP FUNCTION g_cube_union(internal, internal); |
||||
|
||||
DROP FUNCTION g_cube_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION g_cube_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION g_cube_decompress(internal); |
||||
|
||||
DROP FUNCTION g_cube_compress(internal); |
||||
|
||||
DROP FUNCTION g_cube_consistent(internal,cube,int4); |
||||
|
||||
DROP OPERATOR ~ (cube, cube); |
||||
|
||||
DROP OPERATOR @ (cube, cube); |
||||
|
||||
DROP OPERATOR <> (cube, cube); |
||||
|
||||
DROP OPERATOR = (cube, cube); |
||||
|
||||
DROP OPERATOR && (cube, cube); |
||||
|
||||
DROP OPERATOR >= (cube, cube); |
||||
|
||||
DROP OPERATOR <= (cube, cube); |
||||
|
||||
DROP OPERATOR > (cube, cube); |
||||
|
||||
DROP OPERATOR < (cube, cube); |
||||
|
||||
DROP FUNCTION cube_enlarge(cube, float8, int4); |
||||
|
||||
DROP FUNCTION cube_is_point(cube); |
||||
|
||||
DROP FUNCTION cube(cube, float8, float8); |
||||
|
||||
DROP FUNCTION cube(cube, float8); |
||||
|
||||
DROP FUNCTION cube(float8, float8); |
||||
|
||||
DROP FUNCTION cube(float8); |
||||
|
||||
DROP FUNCTION cube_ur_coord(cube, int4); |
||||
|
||||
DROP FUNCTION cube_ll_coord(cube, int4); |
||||
|
||||
DROP FUNCTION cube_dim(cube); |
||||
|
||||
DROP FUNCTION cube_distance(cube, cube); |
||||
|
||||
DROP FUNCTION cube_size(cube); |
||||
|
||||
DROP FUNCTION cube_inter(cube, cube); |
||||
|
||||
DROP FUNCTION cube_union(cube, cube); |
||||
|
||||
DROP FUNCTION cube_overlap(cube, cube); |
||||
|
||||
DROP FUNCTION cube_contained(cube, cube); |
||||
|
||||
DROP FUNCTION cube_contains(cube, cube); |
||||
|
||||
DROP FUNCTION cube_cmp(cube, cube); |
||||
|
||||
DROP FUNCTION cube_ge(cube, cube); |
||||
|
||||
DROP FUNCTION cube_le(cube, cube); |
||||
|
||||
DROP FUNCTION cube_gt(cube, cube); |
||||
|
||||
DROP FUNCTION cube_lt(cube, cube); |
||||
|
||||
DROP FUNCTION cube_ne(cube, cube); |
||||
|
||||
DROP FUNCTION cube_eq(cube, cube); |
||||
|
||||
DROP CAST (text AS cube); |
||||
|
||||
DROP FUNCTION cube(text); |
||||
|
||||
DROP FUNCTION cube_out(cube); |
||||
|
||||
DROP TYPE cube; |
||||
|
||||
DROP FUNCTION cube_in(cstring); |
@ -0,0 +1,59 @@ |
||||
DROP FUNCTION dblink_current_query (); |
||||
|
||||
DROP FUNCTION dblink_build_sql_update (text, int2vector, int4, _text, _text); |
||||
|
||||
DROP FUNCTION dblink_build_sql_delete (text, int2vector, int4, _text); |
||||
|
||||
DROP FUNCTION dblink_build_sql_insert (text, int2vector, int4, _text, _text); |
||||
|
||||
DROP FUNCTION dblink_get_pkey (text); |
||||
|
||||
CREATE TYPE dblink_pkey_results AS (position int4, colname text); |
||||
|
||||
DROP FUNCTION dblink_exec (text,bool); |
||||
|
||||
DROP FUNCTION dblink_exec (text); |
||||
|
||||
DROP FUNCTION dblink_exec (text,text,bool); |
||||
|
||||
DROP FUNCTION dblink_exec (text,text); |
||||
|
||||
DROP FUNCTION dblink (text,bool); |
||||
|
||||
DROP FUNCTION dblink (text); |
||||
|
||||
DROP FUNCTION dblink (text,text,bool); |
||||
|
||||
DROP FUNCTION dblink (text,text); |
||||
|
||||
DROP FUNCTION dblink_close (text,text,bool); |
||||
|
||||
DROP FUNCTION dblink_close (text,text); |
||||
|
||||
DROP FUNCTION dblink_close (text,bool); |
||||
|
||||
DROP FUNCTION dblink_close (text); |
||||
|
||||
DROP FUNCTION dblink_fetch (text,text,int,bool); |
||||
|
||||
DROP FUNCTION dblink_fetch (text,text,int); |
||||
|
||||
DROP FUNCTION dblink_fetch (text,int,bool); |
||||
|
||||
DROP FUNCTION dblink_fetch (text,int); |
||||
|
||||
DROP FUNCTION dblink_open (text,text,text,bool); |
||||
|
||||
DROP FUNCTION dblink_open (text,text,text); |
||||
|
||||
DROP FUNCTION dblink_open (text,text,bool); |
||||
|
||||
DROP FUNCTION dblink_open (text,text); |
||||
|
||||
DROP FUNCTION dblink_disconnect (text); |
||||
|
||||
DROP FUNCTION dblink_disconnect (); |
||||
|
||||
DROP FUNCTION dblink_connect (text, text); |
||||
|
||||
DROP FUNCTION dblink_connect (text); |
@ -0,0 +1,23 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR <@> (point, point); |
||||
|
||||
DROP FUNCTION geo_distance (point, point); |
||||
|
||||
DROP FUNCTION earth_box(earth, float8); |
||||
|
||||
DROP FUNCTION earth_distance(earth, earth); |
||||
|
||||
DROP FUNCTION longitude(earth); |
||||
|
||||
DROP FUNCTION latitude(earth); |
||||
|
||||
DROP FUNCTION ll_to_earth(float8, float8); |
||||
|
||||
DROP FUNCTION gc_to_sec(float8); |
||||
|
||||
DROP FUNCTION sec_to_gc(float8); |
||||
|
||||
DROP DOMAIN earth; |
||||
|
||||
DROP FUNCTION earth(); |
@ -0,0 +1,16 @@ |
||||
-- Adjust this setting to control where the objects get created. |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION dmetaphone_alt (text); |
||||
|
||||
DROP FUNCTION dmetaphone (text); |
||||
|
||||
DROP FUNCTION difference(text,text); |
||||
|
||||
DROP FUNCTION text_soundex(text); |
||||
|
||||
DROP FUNCTION soundex(text); |
||||
|
||||
DROP FUNCTION metaphone (text,int); |
||||
|
||||
DROP FUNCTION levenshtein (text,text); |
@ -0,0 +1,9 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION int_array_enum(int4[]); |
||||
|
||||
DROP AGGREGATE int_array_aggregate (int4); |
||||
|
||||
DROP FUNCTION int_agg_final_array (int4[]); |
||||
|
||||
DROP FUNCTION int_agg_state (int4[], int4); |
@ -0,0 +1,123 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS gist__intbig_ops; |
||||
|
||||
DROP FUNCTION g_intbig_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION g_intbig_union(internal, internal); |
||||
|
||||
DROP FUNCTION g_intbig_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION g_intbig_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION g_intbig_decompress(internal); |
||||
|
||||
DROP FUNCTION g_intbig_compress(internal); |
||||
|
||||
DROP FUNCTION g_intbig_consistent(internal,internal,int4); |
||||
|
||||
DROP TYPE intbig_gkey; |
||||
|
||||
DROP FUNCTION _intbig_out(intbig_gkey); |
||||
|
||||
DROP FUNCTION _intbig_in(cstring); |
||||
|
||||
DROP OPERATOR CLASS gist__int_ops; |
||||
|
||||
DROP FUNCTION g_int_same(_int4, _int4, internal); |
||||
|
||||
DROP FUNCTION g_int_union(internal, internal); |
||||
|
||||
DROP FUNCTION g_int_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION g_int_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION g_int_decompress(internal); |
||||
|
||||
DROP FUNCTION g_int_compress(internal); |
||||
|
||||
DROP FUNCTION g_int_consistent(internal,_int4,int4); |
||||
|
||||
DROP OPERATOR & (_int4, _int4); |
||||
|
||||
DROP OPERATOR - (_int4, _int4); |
||||
|
||||
DROP FUNCTION intset_subtract(_int4, _int4); |
||||
|
||||
DROP OPERATOR | (_int4, _int4); |
||||
|
||||
DROP OPERATOR | (_int4, int4); |
||||
|
||||
DROP FUNCTION intset_union_elem(_int4, int4); |
||||
|
||||
DROP OPERATOR - (_int4, int4); |
||||
|
||||
DROP FUNCTION intarray_del_elem(_int4, int4); |
||||
|
||||
DROP OPERATOR + (_int4, _int4); |
||||
|
||||
DROP FUNCTION intarray_push_array(_int4, _int4); |
||||
|
||||
DROP OPERATOR + (_int4, int4); |
||||
|
||||
DROP FUNCTION intarray_push_elem(_int4, int4); |
||||
|
||||
DROP FUNCTION subarray(_int4, int4); |
||||
|
||||
DROP FUNCTION subarray(_int4, int4, int4); |
||||
|
||||
DROP OPERATOR # (_int4, int4); |
||||
|
||||
DROP FUNCTION idx(_int4, int4); |
||||
|
||||
DROP FUNCTION uniq(_int4); |
||||
|
||||
DROP FUNCTION sort_desc(_int4); |
||||
|
||||
DROP FUNCTION sort_asc(_int4); |
||||
|
||||
DROP FUNCTION sort(_int4); |
||||
|
||||
DROP FUNCTION sort(_int4, text); |
||||
|
||||
DROP OPERATOR # (NONE, _int4); |
||||
|
||||
DROP FUNCTION icount(_int4); |
||||
|
||||
DROP FUNCTION intset(int4); |
||||
|
||||
DROP OPERATOR ~ (_int4, _int4); |
||||
|
||||
DROP OPERATOR @ (_int4, _int4); |
||||
|
||||
DROP OPERATOR && (_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_inter(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_union(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_different(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_same(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_overlap(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_contained(_int4, _int4); |
||||
|
||||
DROP FUNCTION _int_contains(_int4, _int4); |
||||
|
||||
DROP OPERATOR ~~ (query_int, _int4); |
||||
|
||||
DROP OPERATOR @@ (_int4, query_int); |
||||
|
||||
DROP FUNCTION rboolop(query_int, _int4); |
||||
|
||||
DROP FUNCTION boolop(_int4, query_int); |
||||
|
||||
DROP FUNCTION querytree(query_int); |
||||
|
||||
DROP TYPE query_int; |
||||
|
||||
DROP FUNCTION bqarr_out(query_int); |
||||
|
||||
DROP FUNCTION bqarr_in(cstring); |
@ -0,0 +1,69 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS isbn_ops; |
||||
|
||||
DROP FUNCTION isbn_cmp(isbn, isbn); |
||||
|
||||
DROP OPERATOR <> (isbn, isbn); |
||||
|
||||
DROP OPERATOR > (isbn, isbn); |
||||
|
||||
DROP OPERATOR >= (isbn, isbn); |
||||
|
||||
DROP OPERATOR = (isbn, isbn); |
||||
|
||||
DROP OPERATOR <= (isbn, isbn); |
||||
|
||||
DROP OPERATOR < (isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_ne(isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_gt(isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_ge(isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_eq(isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_le(isbn, isbn); |
||||
|
||||
DROP FUNCTION isbn_lt(isbn, isbn); |
||||
|
||||
DROP TYPE isbn; |
||||
|
||||
DROP FUNCTION isbn_out(isbn); |
||||
|
||||
DROP FUNCTION isbn_in(cstring); |
||||
|
||||
DROP OPERATOR CLASS issn_ops; |
||||
|
||||
DROP FUNCTION issn_cmp(issn, issn); |
||||
|
||||
DROP OPERATOR <> (issn, issn); |
||||
|
||||
DROP OPERATOR > (issn, issn); |
||||
|
||||
DROP OPERATOR >= (issn, issn); |
||||
|
||||
DROP OPERATOR = (issn, issn); |
||||
|
||||
DROP OPERATOR <= (issn, issn); |
||||
|
||||
DROP OPERATOR < (issn, issn); |
||||
|
||||
DROP FUNCTION issn_ne(issn, issn); |
||||
|
||||
DROP FUNCTION issn_gt(issn, issn); |
||||
|
||||
DROP FUNCTION issn_ge(issn, issn); |
||||
|
||||
DROP FUNCTION issn_eq(issn, issn); |
||||
|
||||
DROP FUNCTION issn_le(issn, issn); |
||||
|
||||
DROP FUNCTION issn_lt(issn, issn); |
||||
|
||||
DROP TYPE issn; |
||||
|
||||
DROP FUNCTION issn_out(issn); |
||||
|
||||
DROP FUNCTION issn_in(cstring); |
@ -0,0 +1,251 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS gist__ltree_ops; |
||||
|
||||
DROP FUNCTION _ltree_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION _ltree_union(internal, internal); |
||||
|
||||
DROP FUNCTION _ltree_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION _ltree_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION _ltree_compress(internal); |
||||
|
||||
DROP FUNCTION _ltree_consistent(internal,internal,int2); |
||||
|
||||
DROP OPERATOR ?@ (_ltree, ltxtquery); |
||||
|
||||
DROP FUNCTION _ltxtq_extract_exec(_ltree,ltxtquery); |
||||
|
||||
DROP OPERATOR ?~ (_ltree, lquery); |
||||
|
||||
DROP FUNCTION _ltq_extract_regex(_ltree,lquery); |
||||
|
||||
DROP OPERATOR ?<@ (_ltree, ltree); |
||||
|
||||
DROP FUNCTION _ltree_extract_risparent(_ltree,ltree); |
||||
|
||||
DROP OPERATOR ?@> (_ltree, ltree); |
||||
|
||||
DROP FUNCTION _ltree_extract_isparent(_ltree,ltree); |
||||
|
||||
DROP OPERATOR ^@ (ltxtquery, _ltree); |
||||
|
||||
DROP OPERATOR ^@ (_ltree, ltxtquery); |
||||
|
||||
DROP OPERATOR ^? (_lquery, _ltree); |
||||
|
||||
DROP OPERATOR ^? (_ltree, _lquery); |
||||
|
||||
DROP OPERATOR ^~ (lquery, _ltree); |
||||
|
||||
DROP OPERATOR ^~ (_ltree, lquery); |
||||
|
||||
DROP OPERATOR ^@> (ltree, _ltree); |
||||
|
||||
DROP OPERATOR ^<@ (_ltree, ltree); |
||||
|
||||
DROP OPERATOR ^<@ (ltree, _ltree); |
||||
|
||||
DROP OPERATOR ^@> (_ltree, ltree); |
||||
|
||||
DROP OPERATOR @ (ltxtquery, _ltree); |
||||
|
||||
DROP OPERATOR @ (_ltree, ltxtquery); |
||||
|
||||
DROP OPERATOR ? (_lquery, _ltree); |
||||
|
||||
DROP OPERATOR ? (_ltree, _lquery); |
||||
|
||||
DROP OPERATOR ~ (lquery, _ltree); |
||||
|
||||
DROP OPERATOR ~ (_ltree, lquery); |
||||
|
||||
DROP OPERATOR @> (ltree, _ltree); |
||||
|
||||
DROP OPERATOR <@ (_ltree, ltree); |
||||
|
||||
DROP OPERATOR <@ (ltree, _ltree); |
||||
|
||||
DROP OPERATOR @> (_ltree, ltree); |
||||
|
||||
DROP FUNCTION _ltxtq_rexec(ltxtquery, _ltree); |
||||
|
||||
DROP FUNCTION _ltxtq_exec(_ltree, ltxtquery); |
||||
|
||||
DROP FUNCTION _lt_q_rregex(_lquery,_ltree); |
||||
|
||||
DROP FUNCTION _lt_q_regex(_ltree,_lquery); |
||||
|
||||
DROP FUNCTION _ltq_rregex(lquery,_ltree); |
||||
|
||||
DROP FUNCTION _ltq_regex(_ltree,lquery); |
||||
|
||||
DROP FUNCTION _ltree_r_risparent(ltree,_ltree); |
||||
|
||||
DROP FUNCTION _ltree_risparent(_ltree,ltree); |
||||
|
||||
DROP FUNCTION _ltree_r_isparent(ltree,_ltree); |
||||
|
||||
DROP FUNCTION _ltree_isparent(_ltree,ltree); |
||||
|
||||
DROP OPERATOR CLASS gist_ltree_ops; |
||||
|
||||
DROP FUNCTION ltree_same(internal, internal, internal); |
||||
|
||||
DROP FUNCTION ltree_union(internal, internal); |
||||
|
||||
DROP FUNCTION ltree_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION ltree_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION ltree_decompress(internal); |
||||
|
||||
DROP FUNCTION ltree_compress(internal); |
||||
|
||||
DROP FUNCTION ltree_consistent(internal,internal,int2); |
||||
|
||||
DROP TYPE ltree_gist; |
||||
|
||||
DROP FUNCTION ltree_gist_out(ltree_gist); |
||||
|
||||
DROP FUNCTION ltree_gist_in(cstring); |
||||
|
||||
DROP OPERATOR ^@ (ltxtquery, ltree); |
||||
|
||||
DROP OPERATOR ^@ (ltree, ltxtquery); |
||||
|
||||
DROP OPERATOR @ (ltxtquery, ltree); |
||||
|
||||
DROP OPERATOR @ (ltree, ltxtquery); |
||||
|
||||
DROP FUNCTION ltxtq_rexec(ltxtquery, ltree); |
||||
|
||||
DROP FUNCTION ltxtq_exec(ltree, ltxtquery); |
||||
|
||||
DROP TYPE ltxtquery; |
||||
|
||||
DROP FUNCTION ltxtq_out(ltxtquery); |
||||
|
||||
DROP FUNCTION ltxtq_in(cstring); |
||||
|
||||
DROP OPERATOR ^? (_lquery, ltree); |
||||
|
||||
DROP OPERATOR ^? (ltree, _lquery); |
||||
|
||||
DROP OPERATOR ? (_lquery, ltree); |
||||
|
||||
DROP OPERATOR ? (ltree, _lquery); |
||||
|
||||
DROP FUNCTION lt_q_rregex(_lquery,ltree); |
||||
|
||||
DROP FUNCTION lt_q_regex(ltree,_lquery); |
||||
|
||||
DROP OPERATOR ^~ (lquery, ltree); |
||||
|
||||
DROP OPERATOR ^~ (ltree, lquery); |
||||
|
||||
DROP OPERATOR ~ (lquery, ltree); |
||||
|
||||
DROP OPERATOR ~ (ltree, lquery); |
||||
|
||||
DROP FUNCTION ltq_rregex(lquery,ltree); |
||||
|
||||
DROP FUNCTION ltq_regex(ltree,lquery); |
||||
|
||||
DROP TYPE lquery; |
||||
|
||||
DROP FUNCTION lquery_out(lquery); |
||||
|
||||
DROP FUNCTION lquery_in(cstring); |
||||
|
||||
DROP OPERATOR CLASS ltree_ops; |
||||
|
||||
DROP OPERATOR || (text, ltree); |
||||
|
||||
DROP OPERATOR || (ltree, text); |
||||
|
||||
DROP OPERATOR || (ltree, ltree); |
||||
|
||||
DROP OPERATOR ^<@ (ltree, ltree); |
||||
|
||||
DROP OPERATOR <@ (ltree, ltree); |
||||
|
||||
DROP OPERATOR ^@> (ltree, ltree); |
||||
|
||||
DROP OPERATOR @> (ltree, ltree); |
||||
|
||||
DROP FUNCTION ltree_textadd(text,ltree); |
||||
|
||||
DROP FUNCTION ltree_addtext(ltree,text); |
||||
|
||||
DROP FUNCTION ltree_addltree(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_risparent(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_isparent(ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree,ltree,ltree,ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree,ltree,ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree,ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(ltree,ltree); |
||||
|
||||
DROP FUNCTION lca(_ltree); |
||||
|
||||
DROP FUNCTION text2ltree(text); |
||||
|
||||
DROP FUNCTION ltree2text(ltree); |
||||
|
||||
DROP FUNCTION nlevel(ltree); |
||||
|
||||
DROP FUNCTION index(ltree,ltree,int4); |
||||
|
||||
DROP FUNCTION index(ltree,ltree); |
||||
|
||||
DROP FUNCTION subpath(ltree,int4); |
||||
|
||||
DROP FUNCTION subpath(ltree,int4,int4); |
||||
|
||||
DROP FUNCTION subltree(ltree,int4,int4); |
||||
|
||||
DROP OPERATOR <> (ltree, ltree); |
||||
|
||||
DROP OPERATOR = (ltree, ltree); |
||||
|
||||
DROP OPERATOR > (ltree, ltree); |
||||
|
||||
DROP OPERATOR >= (ltree, ltree); |
||||
|
||||
DROP OPERATOR <= (ltree, ltree); |
||||
|
||||
DROP OPERATOR < (ltree, ltree); |
||||
|
||||
DROP FUNCTION ltree_ne(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_gt(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_ge(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_eq(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_le(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_lt(ltree,ltree); |
||||
|
||||
DROP FUNCTION ltree_cmp(ltree,ltree); |
||||
|
||||
DROP TYPE ltree; |
||||
|
||||
DROP FUNCTION ltree_out(ltree); |
||||
|
||||
DROP FUNCTION ltree_in(cstring); |
@ -0,0 +1,6 @@ |
||||
-- Adjust this setting to control where the objects get created. |
||||
SET search_path = public; |
||||
|
||||
DROP VIEW pg_buffercache; |
||||
|
||||
DROP FUNCTION pg_buffercache_pages(); |
@ -0,0 +1,39 @@ |
||||
SET search_path = public; |
||||
|
||||
BEGIN; |
||||
|
||||
DROP OPERATOR CLASS gist_trgm_ops; |
||||
|
||||
DROP FUNCTION gtrgm_same(gtrgm, gtrgm, internal); |
||||
|
||||
DROP FUNCTION gtrgm_union(bytea, internal); |
||||
|
||||
DROP FUNCTION gtrgm_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gtrgm_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gtrgm_decompress(internal); |
||||
|
||||
DROP FUNCTION gtrgm_compress(internal); |
||||
|
||||
DROP FUNCTION gtrgm_consistent(gtrgm,internal,int4); |
||||
|
||||
DROP TYPE gtrgm; |
||||
|
||||
DROP FUNCTION gtrgm_out(gtrgm); |
||||
|
||||
DROP FUNCTION gtrgm_in(cstring); |
||||
|
||||
DROP OPERATOR % (text, text); |
||||
|
||||
DROP FUNCTION similarity_op(text,text); |
||||
|
||||
DROP FUNCTION similarity(text,text); |
||||
|
||||
DROP FUNCTION show_trgm(text); |
||||
|
||||
DROP FUNCTION show_limit(); |
||||
|
||||
DROP FUNCTION set_limit(float4); |
||||
|
||||
COMMIT; |
@ -0,0 +1,8 @@ |
||||
-- Adjust this setting to control where the objects get created. |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION pgstattuple(oid); |
||||
|
||||
DROP FUNCTION pgstattuple(text); |
||||
|
||||
DROP TYPE pgstattuple_type; |
@ -0,0 +1,89 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP OPERATOR CLASS gist_seg_ops; |
||||
|
||||
DROP OPERATOR CLASS seg_ops; |
||||
|
||||
DROP FUNCTION gseg_same(seg, seg, internal); |
||||
|
||||
DROP FUNCTION gseg_union(internal, internal); |
||||
|
||||
DROP FUNCTION gseg_picksplit(internal, internal); |
||||
|
||||
DROP FUNCTION gseg_penalty(internal,internal,internal); |
||||
|
||||
DROP FUNCTION gseg_decompress(internal); |
||||
|
||||
DROP FUNCTION gseg_compress(internal); |
||||
|
||||
DROP FUNCTION gseg_consistent(internal,seg,int4); |
||||
|
||||
DROP OPERATOR ~ (seg, seg); |
||||
|
||||
DROP OPERATOR @ (seg, seg); |
||||
|
||||
DROP OPERATOR <> (seg, seg); |
||||
|
||||
DROP OPERATOR = (seg, seg); |
||||
|
||||
DROP OPERATOR >> (seg, seg); |
||||
|
||||
DROP OPERATOR &> (seg, seg); |
||||
|
||||
DROP OPERATOR && (seg, seg); |
||||
|
||||
DROP OPERATOR &< (seg, seg); |
||||
|
||||
DROP OPERATOR << (seg, seg); |
||||
|
||||
DROP OPERATOR >= (seg, seg); |
||||
|
||||
DROP OPERATOR > (seg, seg); |
||||
|
||||
DROP OPERATOR <= (seg, seg); |
||||
|
||||
DROP OPERATOR < (seg, seg); |
||||
|
||||
DROP FUNCTION seg_lower(seg); |
||||
|
||||
DROP FUNCTION seg_upper(seg); |
||||
|
||||
DROP FUNCTION seg_size(seg); |
||||
|
||||
DROP FUNCTION seg_inter(seg, seg); |
||||
|
||||
DROP FUNCTION seg_union(seg, seg); |
||||
|
||||
DROP FUNCTION seg_cmp(seg, seg); |
||||
|
||||
DROP FUNCTION seg_different(seg, seg); |
||||
|
||||
DROP FUNCTION seg_same(seg, seg); |
||||
|
||||
DROP FUNCTION seg_overlap(seg, seg); |
||||
|
||||
DROP FUNCTION seg_contained(seg, seg); |
||||
|
||||
DROP FUNCTION seg_contains(seg, seg); |
||||
|
||||
DROP FUNCTION seg_ge(seg, seg); |
||||
|
||||
DROP FUNCTION seg_gt(seg, seg); |
||||
|
||||
DROP FUNCTION seg_le(seg, seg); |
||||
|
||||
DROP FUNCTION seg_lt(seg, seg); |
||||
|
||||
DROP FUNCTION seg_right(seg, seg); |
||||
|
||||
DROP FUNCTION seg_left(seg, seg); |
||||
|
||||
DROP FUNCTION seg_over_right(seg, seg); |
||||
|
||||
DROP FUNCTION seg_over_left(seg, seg); |
||||
|
||||
DROP TYPE seg; |
||||
|
||||
DROP FUNCTION seg_out(seg); |
||||
|
||||
DROP FUNCTION seg_in(cstring); |
@ -0,0 +1,29 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,text,int); |
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,text,int,text); |
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,int); |
||||
|
||||
DROP FUNCTION connectby(text,text,text,text,int,text); |
||||
|
||||
DROP FUNCTION crosstab(text,text); |
||||
|
||||
DROP FUNCTION crosstab(text,int); |
||||
|
||||
DROP FUNCTION crosstab4(text); |
||||
|
||||
DROP FUNCTION crosstab3(text); |
||||
|
||||
DROP FUNCTION crosstab2(text); |
||||
|
||||
DROP TYPE tablefunc_crosstab_4; |
||||
|
||||
DROP TYPE tablefunc_crosstab_3; |
||||
|
||||
DROP TYPE tablefunc_crosstab_2; |
||||
|
||||
DROP FUNCTION crosstab(text); |
||||
|
||||
DROP FUNCTION normal_rand(int4, float8, float8); |
@ -0,0 +1,23 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION user_unlock_all(); |
||||
|
||||
DROP FUNCTION user_write_unlock_oid(int4); |
||||
|
||||
DROP FUNCTION user_write_lock_oid(int4); |
||||
|
||||
DROP FUNCTION user_write_unlock_oid(oid); |
||||
|
||||
DROP FUNCTION user_write_lock_oid(oid); |
||||
|
||||
DROP FUNCTION user_write_unlock(int4,oid); |
||||
|
||||
DROP FUNCTION user_write_lock(int4,oid); |
||||
|
||||
DROP FUNCTION user_write_unlock(int4,int4); |
||||
|
||||
DROP FUNCTION user_write_lock(int4,int4); |
||||
|
||||
DROP FUNCTION user_unlock(int4,int4,int4); |
||||
|
||||
DROP FUNCTION user_lock(int4,int4,int4); |
@ -0,0 +1,27 @@ |
||||
SET search_path = public; |
||||
|
||||
DROP FUNCTION xslt_process(text,text); |
||||
|
||||
DROP FUNCTION xslt_process(text,text,text); |
||||
|
||||
DROP FUNCTION xpath_table(text,text,text,text,text); |
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text,text); |
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text); |
||||
|
||||
DROP FUNCTION xpath_list(text,text); |
||||
|
||||
DROP FUNCTION xpath_list(text,text,text); |
||||
|
||||
DROP FUNCTION xpath_bool(text,text); |
||||
|
||||
DROP FUNCTION xpath_number(text,text); |
||||
|
||||
DROP FUNCTION xpath_nodeset(text,text,text,text); |
||||
|
||||
DROP FUNCTION xpath_string(text,text); |
||||
|
||||
DROP FUNCTION xml_encode_special_chars(text); |
||||
|
||||
DROP FUNCTION xml_valid(text); |
Loading…
Reference in new issue