mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
604ab08145
Alexander Korotkov, heavily revised by me.
25 lines
574 B
SQL
25 lines
574 B
SQL
/* contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql */
|
|
|
|
-- Adjust this setting to control where the objects get dropped.
|
|
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);
|
|
|
|
DROP FUNCTION levenshtein (text,text,int,int,int);
|
|
|
|
DROP FUNCTION levenshtein (text,text);
|
|
|
|
DROP FUNCTION levenshtein_less_equal (text,text,int);
|
|
|
|
DROP FUNCTION levenshtein_less_equal (text,text,int,int,int,int);
|