Re: ~*, case insensitiveness and national chars

From: Marcin Owsiany <marcin(at)owsiany(dot)pl>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: ~*, case insensitiveness and national chars
Date: 2003-03-14 11:47:56
Message-ID: 20030314114756.GC17592@melina.ds14.agh.edu.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Mar 13, 2003 at 07:25:45PM -0500, Tom Lane wrote:
> Marcin Owsiany <marcin(at)owsiany(dot)pl> writes:
> > Consider the following commands:
>
> > ] create database a encoding='LATIN2';
> > ] \connect a
> > ] create table a (a character(1));
> > ] insert into a values(chr(161));
> > ] insert into a values(chr(177));
> > ] select count(a) from a where a ~* chr(161);
>
> > On PostgreSQL 7.3.2 this returns 2 (which is correct, since chr(161) and
> > chr(177) are the same character in LATIN2, just different case), but on
> > postgresql 7.2.2, this returns 1.
>
> Case equivalences are determined by locale, not encoding. Did you build
> 7.2 with locale support at all?

Yes.

> Did you initdb it in an appropriate locale?

It was a long time ago, but pg_controldata says I didn't.

Thanks! :-)

Marcin
--
Marcin Owsiany <marcin(at)owsiany(dot)pl> http://marcin.owsiany.pl/
GnuPG: 1024D/60F41216 FE67 DA2D 0ACA FC5E 3F75 D6F6 3A0D 8AA0 60F4 1216

"Every program in development at MIT expands until it can read mail."
-- Unknown

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Pablo Sajnn 2003-03-14 12:06:29 Redefining LIKE operator
Previous Message Richard Huxton 2003-03-14 11:12:11 Re: How referential integrety maintained internally