diff --strip-trailing-cr -U3 C:/cirrus/src/test/regress/expected/copy2.out C:/cirrus/build/testrun/recovery/027_stream_regress/data/results/copy2.out --- C:/cirrus/src/test/regress/expected/copy2.out 2026-04-25 12:57:54.021815400 +0000 +++ C:/cirrus/build/testrun/recovery/027_stream_regress/data/results/copy2.out 2026-04-25 13:07:05.611714200 +0000 @@ -969,13 +969,13 @@ ALTER TABLE err_tbl ADD CONSTRAINT cc2 CHECK(lineno > 2); COPY save_error FROM STDIN WITH (DELIMITER ',', ON_ERROR TABLE, ERROR_TABLE err_tbl); ERROR: new row for relation "err_tbl" violates check constraint "cc2" -DETAIL: Failing row contains (10, 16848, STDIN, 1, a,b,3,4, a, a, invalid input syntax for type integer: "a", null, 22P02). +DETAIL: Failing row contains (10, 41523, STDIN, 1, a,b,3,4, a, a, invalid input syntax for type integer: "a", null, 22P02). CONTEXT: COPY save_error, line 1, column a: "a" ALTER TABLE err_tbl DROP CONSTRAINT cc2; ALTER TABLE err_tbl ADD CONSTRAINT cc3 NOT NULL err_detail; COPY save_error FROM STDIN WITH (DELIMITER ',', ON_ERROR TABLE, ERROR_TABLE err_tbl); ERROR: null value in column "err_detail" of relation "err_tbl" violates not-null constraint -DETAIL: Failing row contains (10, 16848, STDIN, 1, a,b,3,4, a, a, invalid input syntax for type integer: "a", null, 22P02). +DETAIL: Failing row contains (10, 41523, STDIN, 1, a,b,3,4, a, a, invalid input syntax for type integer: "a", null, 22P02). CONTEXT: COPY save_error, line 1, column a: "a" ALTER TABLE err_tbl DROP CONSTRAINT cc3; BEGIN;