On Wed, Nov 2, 2011 at 09:52, <ikezawa(at)tjsys(dot)co(dot)jp> wrote:
> Bug reference: 6282
> PostgreSQL version: 9.1.1
> Operating system: Windows XP
> Description: psql.exe cannot recognize specific 2byte SJIS character
> Details:
> psql.exe cannot recognize specific 2byte SJIS characters.
>
> These characters have '\'(0x5c) in low byte of 2 Bytes.
Please send reproducible input pattern.
I saw expected results as long as client encoding is set to SJIS:
postgres=# \encoding SJIS
postgres=# SELECT '表' AS "ソ";
ソ
----
表
(1 行)
--
Itagaki Takahiro