Re: Different encodings in different DBs in same cluster

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Jamie Lawrence <jal(at)jal(dot)org>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Different encodings in different DBs in same cluster
Date: 2005-07-24 18:41:44
Message-ID: 21993.1122230504@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Jamie Lawrence <jal(at)jal(dot)org> writes:
> I see:

> Since these locale settings are frozen by initdb, the apparent
> flexibility to use different encodings in different databases of a
> cluster is more theoretical than real.

> Does anyone know what "more theoretical than real" mean in this context?

It means there are some locales that actively fail (you get inconsistent
comparison and sorting behavior) when presented with multibyte data that
doesn't match their encoding expectations. IMHO such locale definitions
are broken and should be fixed, but they are not under our control.

> If I set the locale to C, is it going to work correctly with UTF8
> encoded data?

C will work "correctly" for suitably small values of "correctly" ---
non-ASCII characters may not sort where you'd wish, and it won't know
anything about case-folding for non-ASCII characters. But it will at
least give consistent results.

When you use a non-C locale, it's best to stick to the encoding that
the locale expects.

regards, tom lane

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Pascual De Ruvo 2005-07-24 22:07:09 Re: Counting Row
Previous Message PFC 2005-07-24 16:45:12 Re: Counting Row