postgresql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql
Peter Eisentraut fe83b3ebc6 contrib uninstall scripts
by David Fetter
2006-02-27 12:54:39 +00:00

17 lines
343 B
SQL

-- Adjust this setting to control where the objects get created.
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);