@@ -201,10 +201,10 @@ copy header_copytest from stdin with (header match);
201
201
ERROR: column name mismatch in header line field 3: got null value ("\N"), expected "c"
202
202
CONTEXT: COPY header_copytest, line 1: "a b \N"
203
203
copy header_copytest from stdin with (header match);
204
- ERROR: wrong number of fields in header line: field count is 2, expected 3
204
+ ERROR: wrong number of fields in header line: got 2, expected 3
205
205
CONTEXT: COPY header_copytest, line 1: "a b"
206
206
copy header_copytest from stdin with (header match);
207
- ERROR: wrong number of fields in header line: field count is 4, expected 3
207
+ ERROR: wrong number of fields in header line: got 4, expected 3
208
208
CONTEXT: COPY header_copytest, line 1: "a b c d"
209
209
copy header_copytest from stdin with (header match);
210
210
ERROR: column name mismatch in header line field 3: got "d", expected "c"
@@ -224,10 +224,10 @@ copy header_copytest (c, a) from stdin with (header match);
224
224
copy header_copytest (a, c) from stdin with (header match);
225
225
-- errors
226
226
copy header_copytest from stdin with (header match);
227
- ERROR: wrong number of fields in header line: field count is 3, expected 2
227
+ ERROR: wrong number of fields in header line: got 3, expected 2
228
228
CONTEXT: COPY header_copytest, line 1: "a ........pg.dropped.2........ c"
229
229
copy header_copytest (a, c) from stdin with (header match);
230
- ERROR: wrong number of fields in header line: field count is 3, expected 2
230
+ ERROR: wrong number of fields in header line: got 3, expected 2
231
231
CONTEXT: COPY header_copytest, line 1: "a c b"
232
232
SELECT * FROM header_copytest ORDER BY a;
233
233
a | c
0 commit comments