diff options
| author | Joe Conway <mail@joeconway.com> | 2004-07-01 03:25:48 +0000 |
|---|---|---|
| committer | Joe Conway <mail@joeconway.com> | 2004-07-01 03:25:48 +0000 |
| commit | 13629df5a124fd657bad2c7650efb4799e3d812f (patch) | |
| tree | a3153a2bbb6bd6182dc4abb794b5621b2374001e /contrib/fuzzystrmatch/README.fuzzystrmatch | |
| parent | 77a436ba55de1bb72df264e54db05873acf43c74 (diff) | |
| download | postgresql-13629df5a124fd657bad2c7650efb4799e3d812f.tar.gz | |
Add double metaphone code from Andrew Dunstan. Also change metaphone so that
an empty input string causes an empty output string to be returned, instead of
throwing an ERROR -- per complaint from Aaron Hillegass, and consistent with
double metaphone. Fix examples in README.soundex pointed out by James Robinson.
Diffstat (limited to 'contrib/fuzzystrmatch/README.fuzzystrmatch')
| -rw-r--r-- | contrib/fuzzystrmatch/README.fuzzystrmatch | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/contrib/fuzzystrmatch/README.fuzzystrmatch b/contrib/fuzzystrmatch/README.fuzzystrmatch index ff287b9aa3..ea4f0ec90e 100644 --- a/contrib/fuzzystrmatch/README.fuzzystrmatch +++ b/contrib/fuzzystrmatch/README.fuzzystrmatch @@ -23,6 +23,11 @@ * Metaphone was originally created by Lawrence Philips and presented in article * in "Computer Language" December 1990 issue. * + * dmetaphone() and dmetaphone_alt() + * --------------------------------- + * A port of the DoubleMetaphone perl module by Andrew Dunstan. See dmetaphone.c + * for more detail. + * * soundex() * ----------- * Folded existing soundex contrib into this one. Renamed text_soundex() (C function) @@ -48,11 +53,14 @@ */ -Version 0.2 (7 August, 2001): - Functions to calculate the degree to which two strings match in a "fuzzy" way - Tested under Linux (Red Hat 6.2 and 7.0) and PostgreSQL 7.2devel +Version 0.3 (30 June, 2004): Release Notes: + Version 0.3 + - added double metaphone code from Andrew Dunstan + - change metaphone so that an empty input string causes an empty + output string to be returned, instead of throwing an ERROR + - fixed examples in README.soundex Version 0.2 - folded soundex contrib into this one |
