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

From Bruce Momjian
Subject Re: Configurable Penalty Costs for Levenshtein
Date
Msg-id 200804030035.m330Z8112189@momjian.us
Whole thread Raw
In response to Re: Configurable Penalty Costs for Levenshtein  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Configurable Penalty Costs for Levenshtein  (Volkan YAZICI <yazicivo@ttmail.com>)
List pgsql-patches
Because of lack of reply from the author, this has been saved for the
next commit-fest:

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

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

Tom Lane wrote:
> Volkan YAZICI <yazicivo@ttnet.net.tr> writes:
> > 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.
>
> If that's wrong, aren't the comments and the length restriction limit
> also wrong?
>
>             regards, tom lane
>
> --
> Sent via pgsql-patches mailing list (pgsql-patches@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-patches

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

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

pgsql-patches by date:

Previous
From: Simon Riggs
Date:
Subject: Re: Patch to add a feature to pg_standby
Next
From: Bruce Momjian
Date:
Subject: Re: Consistent \d commands in psql