2006-02-27 20:54:39 +08:00
|
|
|
SET search_path = public;
|
|
|
|
|
|
|
|
BEGIN;
|
|
|
|
|
2006-03-14 02:04:58 +08:00
|
|
|
DROP OPERATOR CLASS gist_trgm_ops USING gist;
|
2006-02-27 20:54:39 +08:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2006-03-14 02:04:58 +08:00
|
|
|
DROP TYPE gtrgm CASCADE;
|
2006-02-27 20:54:39 +08:00
|
|
|
|
|
|
|
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;
|