Re: Translations in the distributions

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Translations in the distributions
Дата
Msg-id 26750.1073688049@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Translations in the distributions  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:
> It might already help if we allowed LC_CTYPE to be attached to a 
> database rather than the entire cluster, and make the user match them 
> up manually.  The only drawback would be that indexes on global tables 
> involving upper() or lower() would no longer work reliably.

Make that "indexes on global tables involving any text wouldn't work".
Everyone has to have the same notion of the sort order, or the index is
corrupt from someone's point of view, and soon from everyone's point of
view.  upper/lower isn't needed to cause a problem.

However ... we do not have any global tables with indexed text columns.
Only name columns, and name comparisons are presently not locale-aware
(they're just strncmp()).  I think it wouldn't be unreasonable to
legislate that this remain true forevermore, and then it would be safe
to allow different DBs to run in different locales.  That would be a big
step forward, for sure.

[ thinks more... ]  Actually it's a bigger restriction than that.
Imagine that you create some tables with text data in template1, and
then index them.  The indexes would be corrupt if you cloned template1
and assigned the result a different locale.  So to make this work, we'd
actually need the following restrictions:

* No system table can ever have an index on a text/varchar/char column; only name columns, and name has to remain
locale-unaware.

* You can't assign a new locale to a cloned database if the source has any text/varchar/char indexes.

The simplest implementation restriction I can think of to guarantee
point 2 is to allow changing the locale only when cloning template0,
not when cloning anything else.  Or we could just warn people that
they'd better reindex after changing the locale.

It does seem like this might be a reasonable path to take.  Thoughts?
        regards, tom lane


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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Encoding problems in PostgreSQL with XML data
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: Encoding problems in PostgreSQL with XML data