PostgreSQL 8.3.7: soundex function returns UTF-16 characters

Поиск
Список
Период
Сортировка
От Frans
Тема PostgreSQL 8.3.7: soundex function returns UTF-16 characters
Дата
Msg-id 49DA1ABA.8090900@geodan.nl
обсуждение исходный текст
Ответы Re: PostgreSQL 8.3.7: soundex function returns UTF-16 characters  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Hello,

We have just discovered a problem with the soundex function in
PostgreSQL 8.3.7. The problem is easy to reproduce. The following query
returns the ASCII code of the soundex representation of the Greek letter Pi:

select ascii (soundex('Π'));

In PostgreSQL 8.2.6 the result would be 0 (character null). In
PostgreSQL 8.3.7 the return value is 944, which is the UTF-16 code of
this letter. Because PostgreSQL does not support UTF-16, this behaviour
causes problems when the return values from the soundex function are
stored in a database column. For instance, creating an index on such a
column or doing VACUUM FULL on the table results in errors like:

ERROR: could not convert string to UTF-16

Regards,
Frans

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: BUG #4750: UPDATE called from PL/pgSQL failed when there is ON UPDATE DO INSTEAD NOTHING rule
Следующее
От: Tom Lane
Дата:
Сообщение: Re: PostgreSQL 8.3.7: soundex function returns UTF-16 characters