Re: Configurable Penalty Costs for Levenshtein

From: Volkan YAZICI <yazicivo(at)ttnet(dot)net(dot)tr>
To: pgsql-patches(at)postgresql(dot)org
Subject: Re: Configurable Penalty Costs for Levenshtein
Date: 2007-11-28 13:10:13
Message-ID: 877ik2wm6i.fsf@ttnet.net.tr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

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.

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Alvaro Herrera 2007-11-28 14:27:57 Re: [GENERAL] Empty arrays with ARRAY[]
Previous Message Gevik Babakhani 2007-11-28 12:26:56 V1.1 patch for TODO Item: SQL-language reference parameters by name.