summaryrefslogtreecommitdiff
path: root/contrib/pg_trgm/uninstall_pg_trgm.sql
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/pg_trgm/uninstall_pg_trgm.sql')
-rw-r--r--contrib/pg_trgm/uninstall_pg_trgm.sql42
1 files changed, 0 insertions, 42 deletions
diff --git a/contrib/pg_trgm/uninstall_pg_trgm.sql b/contrib/pg_trgm/uninstall_pg_trgm.sql
deleted file mode 100644
index 42c1d741f9..0000000000
--- a/contrib/pg_trgm/uninstall_pg_trgm.sql
+++ /dev/null
@@ -1,42 +0,0 @@
-/* $PostgreSQL: pgsql/contrib/pg_trgm/uninstall_pg_trgm.sql,v 1.7 2009/03/25 22:19:01 tgl Exp $ */
-
--- Adjust this setting to control where the objects get dropped.
-SET search_path = public;
-
-DROP OPERATOR CLASS gist_trgm_ops USING gist;
-
-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(internal,text,int,oid,internal);
-
-DROP TYPE gtrgm CASCADE;
-
-DROP OPERATOR CLASS gin_trgm_ops USING gin;
-
-DROP FUNCTION gin_extract_trgm(text, internal);
-
-DROP FUNCTION gin_extract_trgm(text, internal, int2, internal, internal);
-
-DROP FUNCTION gin_trgm_consistent(internal, int2, text, int4, internal, internal);
-
-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);