encoding error - Mailing list pgsql-admin

From Ulrich Wisser
Subject encoding error
Date
Msg-id 439F371E.6030706@publisher.de
Whole thread Raw
Responses Re: encoding error  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-admin
Hello,

I try to insert some japanese text in my database. But it fails with
duplicate value error, although I use two different values. My database
is set up with UNICODE, I even tried a SQL_ASCII set up where I do all
conversion manual, but nothing worked, the error persists. Please find
the smallest possible example attached below.

I verified it in 7.4.7 and 8.1.

Any ideas welcome!

TIA

Ulrich


createdb test -E unicode

in psql:

create table kw(keyword varchar(256) primary key);

insert into kw (keyword) values
('ã\202­ã\203£ã\203©ã\203¡ã\203«ã\202\222è³¼å\205¥ã\201\231ã\202\213');
insert into kw (keyword) values
('ã\202¬ã\203\212ã\203\203ã\202·ã\203¥ã\202\222è³¼å\205¥ã\201\231ã\202\213');
ERROR:  duplicate key violates unique constraint "kw_pkey"


pgsql-admin by date:

Previous
From: Chris Hoover
Date:
Subject: 8.1.1 initdb problems
Next
From: Tom Lane
Date:
Subject: Re: encoding error