Encoding problem

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема Encoding problem
Дата
Msg-id 200103210900.f2L901Z16236@hub.org
обсуждение исходный текст
Ответы Re: Encoding problem  (Tatsuo Ishii <t-ishii@sra.co.jp>)
Список pgsql-bugs
Danny Kao (danny.kao@autotools.com.tw) reports a bug with a severity of 2
The lower the number the more severe it is.

Short Description
Encoding problem

Long Description
I have tried "initdb --encoding=BIG5"
then doing some create table and insert.
As shows below,it seems loss one byte "\",
and dumping data  is the same.
How could I got the right result?


Sample Code
Welcome to psql, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

template1=# \encoding
BIG5
template1=# create table a (a text);
CREATE
template1=# insert into a values('³\¦h');
INSERT 18761 1
template1=# select * from a;
  a
-----
 ³¦h
(1 row)

No file was uploaded with this report

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Tatsuo Ishii
Дата:
Сообщение: Re: Bugs on COPY command
Следующее
От: Peter T Mount
Дата:
Сообщение: Re: getBigDecimal problem