"David Gradwell" <[EMAIL PROTECTED]> writes:
> set backslash_quote = off in postgresql.conf
> create table a (a1 varchar(100))
> insert into a(a1) values ( '\602')
> gives ERROR: invalid byte sequence for encoding "UTF8": 0x82'
backslash_quote has got zero to do with that case.
On Mon, 14 Jan 2008, David Gradwell wrote:
> Description:backslash_quote = off doesn't work any more
I think you need to
set standard_conforming_strings=on;
instead.
Then:
select '\''012'::text;
text
---
\'012
(1 row)
sele
The following bug has been logged online:
Bug reference: 3872
Logged by: David Gradwell
Email address: [EMAIL PROTECTED]
PostgreSQL version: 8.3-beta3
Operating system: Windows Server 2003
Description:backslash_quote = off doesn't work any more
Details:
set backslas