Re: select lower('ÆØÅ ABC'); does - Mailing list pgsql-sql

From Markus Bertheau
Subject Re: select lower('ÆØÅ ABC'); does
Date
Msg-id 1053886937.28728.1.camel@saphir
Whole thread Raw
In response to Re: select lower('ÆØÅ ABC'); does not work as expected  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
В Вск, 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.


pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: tablename as attribute in pgplsql
Next
From: Josh Berkus
Date:
Subject: Quick question regarding indexes and NULLs in 7.3.3 -> 7.4