Re: add soundex difference function to - Mailing list pgsql-patches

From Neil Conway
Subject Re: add soundex difference function to
Date
Msg-id 1106636752.9525.7.camel@localhost.localdomain
Whole thread Raw
In response to add soundex difference function to contrib/fuzzystrmatch  (Kris Jurka <books@ejurka.com>)
Responses Re: add soundex difference function to contrib/fuzzystrmatch
List pgsql-patches
On Tue, 2005-01-25 at 01:13 -0500, Kris Jurka wrote:
> The attached patch implements the soundex difference function which
> compares two strings' soundex values for similarity.

*** 19,24 ****
--- 19,28 ----
  AS 'MODULE_PATHNAME', 'soundex'
  LANGUAGE 'C';

+ CREATE FUNCTION difference(text,text) RETURNS int
+ AS 'MODULE_PATHNAME', 'difference'
+ LANGUAGE 'C';
+

This should be immutable, right?

-Neil



pgsql-patches by date:

Previous
From: "Michael Paesold"
Date:
Subject: Re: pg_autovacuum Win32 Service startup delay
Next
From: Kris Jurka
Date:
Subject: Re: add soundex difference function to contrib/fuzzystrmatch