2009-03-26 06:19:02 +08:00
|
|
|
/* $PostgreSQL: pgsql/contrib/pg_trgm/uninstall_pg_trgm.sql,v 1.7 2009/03/25 22:19:01 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.
|
2006-02-27 20:54:39 +08:00
|
|
|
SET search_path = public;
|
|
|
|
|
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);
|
|
|
|
|
2008-04-15 01:05:34 +08:00
|
|
|
DROP FUNCTION gtrgm_consistent(internal,text,int,oid,internal);
|
2006-02-27 20:54:39 +08:00
|
|
|
|
2006-03-14 02:04:58 +08:00
|
|
|
DROP TYPE gtrgm CASCADE;
|
2006-02-27 20:54:39 +08:00
|
|
|
|
2007-03-14 22:15:40 +08:00
|
|
|
DROP OPERATOR CLASS gin_trgm_ops USING gin;
|
|
|
|
|
|
|
|
DROP FUNCTION gin_extract_trgm(text, internal);
|
|
|
|
|
2009-03-26 06:19:02 +08:00
|
|
|
DROP FUNCTION gin_extract_trgm(text, internal, int2, internal, internal);
|
2007-03-14 22:15:40 +08:00
|
|
|
|
2009-03-26 06:19:02 +08:00
|
|
|
DROP FUNCTION gin_trgm_consistent(internal, int2, text, int4, internal, internal);
|
2007-03-14 22:15:40 +08:00
|
|
|
|
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);
|