Re: Configurable Penalty Costs for Levenshtein

From: Bruce Momjian <bruce(at)momjian(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Volkan YAZICI <yazicivo(at)ttnet(dot)net(dot)tr>, pgsql-patches(at)postgresql(dot)org
Subject: Re: Configurable Penalty Costs for Levenshtein
Date: 2008-04-03 00:35:08
Message-ID: 200804030035.m330Z8112189@momjian.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)ttnet(dot)net(dot)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(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-patches

--
Bruce Momjian <bruce(at)momjian(dot)us> http://momjian.us
EnterpriseDB http://enterprisedb.com

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

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2008-04-03 00:37:17 Re: Consistent \d commands in psql
Previous Message Bruce Momjian 2008-04-03 00:33:16 Re: [PATCHES] psql slash# command