From: | "Magnus Hagander" <mha(at)sollentuna(dot)net> |
---|---|
To: | "Howard Cole" <howard(dot)cole(at)selestial(dot)com>, "PgSql General" <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Case sensitivity |
Date: | 2005-06-12 18:32:51 |
Message-ID: | 6BCB9D8A16AC4241919521715F4D8BCE094517@algol.sollentuna.se |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
> create table test (val varchar(10));
> insert into test values ('A');
> insert into test values ('a');
> select * from test where val < 'a';
>
> Results on 8.0.1 linux server (UNICODE)
> val
> -----
> (0 rows)
>
> Results on 8.0.3 windows server (UNICODE) val
> -----
> A
> (1 row)
>
> I am guessing that the 8.0.3 on windows is the correct
> version - but what changes this and how can I set it?
UNICODE is not currently supported on win32. We hope to have this done
in 8.1, but in 8.0 bad things like this will happen. See
http://www.postgresql.org/docs/faqs.FAQ_windows.html#2.6.
//Magnus
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2005-06-12 18:47:01 | Re: Use of Indexes |
Previous Message | Steve Atkins | 2005-06-12 18:28:35 | Re: Trying to get posgreSQL-8.0.3 up on Tiger 10.4.1 |