Re: Configurable Penalty Costs for Levenshtein

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: Configurable Penalty Costs for Levenshtein
Дата
Msg-id 200711281454.lASEse805903@momjian.us
обсуждение исходный текст
Ответ на Re: Configurable Penalty Costs for Levenshtein  (Volkan YAZICI <yazicivo@ttnet.net.tr>)
Список 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 по дате отправления:

Предыдущее
От: Volkan YAZICI
Дата:
Сообщение: Re: Configurable Penalty Costs for Levenshtein
Следующее
От: David Fetter
Дата:
Сообщение: Partition: use triggers instead of rules