bug in 7.4

From: Alexander S <sasha(at)in(dot)crimea(dot)ua>
To: pgsql-general(at)postgresql(dot)org
Subject: bug in 7.4
Date: 2003-12-02 09:41:30
Message-ID: 3FCC5E4A.90801@in.crimea.ua
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

There is little bug in postgresql 7.4.
CREATE DATABASE my_db
WITH ENCODING = 'UNICODE';
CREATE TABLE mytable
(
my_column varchar NOT NULL,
CONSTRAINT primary_mytable PRIMARY KEY (my_column)
) WITHOUT OIDS;
Data in mytable doesn t order in alphabetical russian order (select
... ORDER BY my_column). (For example, result is 'BMLAT' but must be
'ABLMT' - for russian letters, of course).
For db in KOI8 encoding - all looks right.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Chris Travers 2003-12-02 10:00:01 Re: PostgreSQL from a newcomers perspective
Previous Message Alex 2003-12-02 08:31:45 Re: PG_DUMP question