@@ -201,10 +201,10 @@ copy header_copytest from stdin with (header match);
201201ERROR: column name mismatch in header line field 3: got null value ("\N"), expected "c"
202202CONTEXT: COPY header_copytest, line 1: "a b \N"
203203copy 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
205205CONTEXT: COPY header_copytest, line 1: "a b"
206206copy 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
208208CONTEXT: COPY header_copytest, line 1: "a b c d"
209209copy header_copytest from stdin with (header match);
210210ERROR: 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);
224224copy header_copytest (a, c) from stdin with (header match);
225225-- errors
226226copy 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
228228CONTEXT: COPY header_copytest, line 1: "a ........pg.dropped.2........ c"
229229copy 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
231231CONTEXT: COPY header_copytest, line 1: "a c b"
232232SELECT * FROM header_copytest ORDER BY a;
233233 a | c
0 commit comments