Re: C locale + unicode

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: John Sidney-Woollett <johnsw(at)wardbrook(dot)com>
Cc: postgres general <pgsql-general(at)postgresql(dot)org>
Subject: Re: C locale + unicode
Date: 2005-01-14 18:34:18
Message-ID: 25167.1105727658@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

John Sidney-Woollett <johnsw(at)wardbrook(dot)com> writes:
> Do upper() and lower() only work correctly for postgres v8 UTF-8 encoded
> databases? (They don't seem to work on chars > standard ascii on my
> 7.4.6 db). Is this locale or encoding specific issue?

Before 8.0, they don't work on multibyte characters, period. In 8.0
they work according to your locale setting.

> Is there likely to be a significant difference in speed between a
> database using a UTF-8 locale and the C locale (if you don't care about
> the small issues you detailed below)?

I'd expect the C locale to be materially faster for text sorting.
Don't have a number offhand.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2005-01-14 18:38:16 Re: [HACKERS] Much Ado About COUNT(*)
Previous Message John Sidney-Woollett 2005-01-14 18:28:04 Re: C locale + unicode