Re: Configurable Penalty Costs for Levenshtein - Mailing list pgsql-patches

From Bruce Momjian
Subject Re: Configurable Penalty Costs for Levenshtein
Date
Msg-id 200711281454.lASEse805903@momjian.us
Whole thread Raw
In response to Re: Configurable Penalty Costs for Levenshtein  (Volkan YAZICI <yazicivo@ttnet.net.tr>)
List pgsql-patches
This has been saved for the 8.4 release:

    http://momjian.postgresql.org/cgi-bin/pgpatches_hold

---------------------------------------------------------------------------

Volkan YAZICI wrote:
> Hi,
>
> I noticed a small typo in the patch.
>
>   prev = palloc((m + n) * sizeof(char));
>
> line should look like
>
>   prev = palloc(2 * m * sizeof(char));
>
> instead.
>
>
> Regards.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings

--
  Bruce Momjian  <bruce@momjian.us>        http://momjian.us
  EnterpriseDB                             http://postgres.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +

pgsql-patches by date:

Previous
From: Volkan YAZICI
Date:
Subject: Re: Configurable Penalty Costs for Levenshtein
Next
From: David Fetter
Date:
Subject: Partition: use triggers instead of rules