Kristian Knudsen ([EMAIL PROTECTED]) reports a bug with a severity of 2
The lower the number the more severe it is.
Short Description
When inserting '\' the insert fails.
Long Description
When inserting '\' to a text field and there is a date column
the insert fails.
But only if the date inser
[EMAIL PROTECTED] writes:
> When inserting '\' the insert fails.
Your examples work fine for me:
regression=# create table t3 (tt text, date timestamp);
CREATE
regression=# INSERT INTO t3 ( tt,date )
regression-# VALUES ( 'aaa ''\\'' ','2000-10-30 21:18:05' );
INSERT 5814810 1
regre