В Вск, 25.05.2003, в 05:07, Tom Lane пишет:
> You need to run initdb in the correct locale. LC_COLLATE and LC_CTYPE
> are both locked down at initdb time, and the latter determines the
> behavior of lower(). You could use pg_controldata to check the
> database's LC_CTYPE, but I'll bet that it's not a Danish locale.
>
bert@saphir bert $ su -
Password:
saphir root # su - postgres
postgres@saphir postgresql $ pg_controldata /var/lib/postgresql/data/ |
grep LC
LC_COLLATE: ru_RU.UTF-8
LC_CTYPE: ru_RU.UTF-8
postgres@saphir postgresql $ logout
saphir root # logout
bert@saphir bert $ psql template1 postgres
Добро пожаловать в psql 7.3.2 - Интерактивный Терминал PostgreSQL.
template1=# select lower('äÄöÖüÜабвгдАБВГД');
lower
----------------------------------
äÄöÖüÜабвгдАБВГД
(1 запись)
template1=# \q
bert@saphir bert $
What gives?
--
Markus Bertheau.
Berlin, Berlin.
Germany.