From: | Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp> |
---|---|
To: | michael(dot)enke(at)wincor-nixdorf(dot)com |
Cc: | pgsql-bugs(at)postgresql(dot)org, pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: [HACKERS] Bug #659: lower()/upper() bug on |
Date: | 2002-05-14 01:29:54 |
Message-ID: | 20020514102954W.t-ishii@sra.co.jp |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs pgsql-hackers |
> I think it is really not hard to do this for UTF-8. I don't have to know the
> relation between the locale and the encoding. Look at this:
> We can use the LC_CTYPE from pg_controldata or alternatively the LC_CTYPE
> at server startup. For nearly every locale (de_DE, ja_JP, ...) there exists
> also a locale *.utf8 (de_DE.utf8, ja_JP.utf8, ...) at least for the actual Linux glibc.
My Linux box does not have *.utf8 locales at all. Probably not so many
platforms have them up to now, I guess.
> We don't need to know more than this. If we call
> setlocale(LC_CTYPE, <value of LC_CTYPE extended with .utf8 if not already given>)
> then glibc is aware of doing all the conversions. I attach a small demo program
> which set the locale ja_JP.utf8 and is able to translate german umlaut A (upper) to
> german umlaut a (lower).
Interesting idea, but the problem is we have to decide to use exactly
one locale before initdb. In my understanding, users willing to use
Unicode (UTF-8) tend to use multiple languages. This is natural since
Unicode claims it can handle several languages. For example, user
might want to have a table like this in a UTF-8 database:
create table t1(
english text, -- English message
germany text, -- Germany message
japanese text -- Japanese message
);
If you have set the local to, say de_DE, then:
select lower(japanese) from t1;
would be executed in de_DE.utf8 locale, and I doubt it produces any
meaningfull results for Japanese.
--
Tatsuo Ishii
From | Date | Subject | |
---|---|---|---|
Next Message | Jean-Michel POURE | 2002-05-14 06:35:12 | Re: [HACKERS] Bug #659: lower()/upper() bug on |
Previous Message | Tom Lane | 2002-05-14 01:09:16 | Re: [BUG] COPY ... FROM STDIN hangs where supplied with too many more fields |
From | Date | Subject | |
---|---|---|---|
Next Message | Rod Taylor | 2002-05-14 01:43:18 | Re: pg_dump DROP commands and implicit search paths |
Previous Message | Tom Lane | 2002-05-14 01:24:20 | Re: pg_dump DROP commands and implicit search paths |