2009-11-15 02:24:32 +08:00
|
|
|
/* $PostgreSQL: pgsql/contrib/unaccent/uninstall_unaccent.sql,v 1.2 2009/11/14 18:24:32 tgl Exp $ */
|
2009-08-18 18:34:39 +08:00
|
|
|
|
2009-11-15 02:24:32 +08:00
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
|
|
SET search_path = public;
|
2009-08-18 18:34:39 +08:00
|
|
|
|
2009-11-15 02:24:32 +08:00
|
|
|
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);
|