Re: Strange query results with invalid multibyte

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Strange query results with invalid multibyte
Дата
Msg-id 27700.1159467254@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Strange query results with invalid multibyte  (Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl>)
Список pgsql-general
Joost Kraaijeveld <J.Kraaijeveld@Askesis.nl> writes:
> On Wed, 2006-09-27 at 14:58 -0400, Tom Lane wrote:
>> LANG=en_US locale charmap

> The working machine says: ISO-8859-1
> The not working machine says: ISO-8859-1

OK, so the problem is that you have a locale that expects ISO-8859-1
encoding, but the database is set to UTF8 encoding, and that means
it may contain characters that the locale can't deal with.
Locale-dependent operations ... like upper() ... will fail when that
happens.

If we had a more reliable way of telling what encoding the locale
expects, we'd probably forbid creation of databases with incompatible
encodings.

> I still do not understand what is happening and maybe more important,
> how I can solve this (without re-installing the OS / database).

If you want to use UTF8 then you're stuck with a re-initdb I'm afraid.

            regards, tom lane

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

Предыдущее
От: Joost Kraaijeveld
Дата:
Сообщение: Re: Strange query results with invalid multibyte
Следующее
От: Ben
Дата:
Сообщение: contrib/levenshtein() has a bug?