2008-04-04 05:13:07 +08:00
|
|
|
/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql,v 1.4 2008/04/03 21:13:07 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;
|
|
|
|
|
|
|
|
DROP FUNCTION dmetaphone_alt (text);
|
|
|
|
|
|
|
|
DROP FUNCTION dmetaphone (text);
|
|
|
|
|
|
|
|
DROP FUNCTION difference(text,text);
|
|
|
|
|
|
|
|
DROP FUNCTION text_soundex(text);
|
|
|
|
|
|
|
|
DROP FUNCTION soundex(text);
|
|
|
|
|
|
|
|
DROP FUNCTION metaphone (text,int);
|
|
|
|
|
2008-04-04 05:13:07 +08:00
|
|
|
DROP FUNCTION levenshtein (text,text,int,int,int);
|
|
|
|
|
2006-02-27 20:54:39 +08:00
|
|
|
DROP FUNCTION levenshtein (text,text);
|