Files
postgres/src/backend
Marc G. Fournier 5fdefbc7ef From: t-ishii@sra.co.jp
As mentioned around line 1153 in backend/commands/copy.c, the method
of array checking is not perfect.

test=> create table t1 (i text);
test=> insert into t1 values('{\\.}');
INSERT 2645600 1
test=> select * from t1;
i
-----
{\\.}
(2 rows)
test=> copy t1 to '/tmp/aaa';
test=> copy t1 from '/tmp/aaa';
ERROR:  CopyReadAttribute - end of record marker corrupted

Copy cannot read data produced by itself!
1998-06-19 11:40:46 +00:00
..
1998-06-19 11:40:46 +00:00
1998-06-19 03:23:41 +00:00
1998-06-18 03:44:00 +00:00
1998-06-19 02:55:19 +00:00
1998-06-18 16:35:38 +00:00
1998-04-27 04:08:07 +00:00