mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-27 07:21:09 +08:00
55f6e5f689
specify the cost values to use, instead of always using 1's. Volkan Yazici In passing, remove fuzzystrmatch.h, which contained a bunch of stuff that had no business being in a .h file; fold it into its only user, fuzzystrmatch.c.
21 lines
507 B
SQL
21 lines
507 B
SQL
/* $PostgreSQL: pgsql/contrib/fuzzystrmatch/uninstall_fuzzystrmatch.sql,v 1.4 2008/04/03 21:13:07 tgl Exp $ */
|
|
|
|
-- 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);
|