mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
29faadcd27
Set search_path explicitly, don't use IF EXISTS, etc.
12 lines
450 B
SQL
12 lines
450 B
SQL
/* $PostgreSQL: pgsql/contrib/unaccent/uninstall_unaccent.sql,v 1.2 2009/11/14 18:24:32 tgl Exp $ */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
SET search_path = public;
|
|
|
|
DROP FUNCTION unaccent(regdictionary, text);
|
|
DROP FUNCTION unaccent(text);
|
|
DROP TEXT SEARCH DICTIONARY unaccent;
|
|
DROP TEXT SEARCH TEMPLATE unaccent;
|
|
DROP FUNCTION unaccent_init(internal);
|
|
DROP FUNCTION unaccent_lexize(internal,internal,internal,internal);
|