8000 Correct xmax test for COPY FREEZE · postgres/postgres@ef754fb · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ef754fb

Browse files
Correct xmax test for COPY FREEZE
1 parent 1f023f9 commit ef754fb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/test/regress/expected/copy2.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,11 @@ BEGIN;
258258
CREATE TABLE vistest (LIKE testeoc);
259259
COPY vistest FROM stdin CSV;
260260
COMMIT;
261-
SELECT xmax, * FROM vistest;
262-
xmax | a
263-
------+----
264-
0 | a0
265-
0 | b
261+
SELECT * FROM vistest;
262+
a
263+
----
264+
a0
265+
b
266266
(2 rows)
267267

268268
BEGIN;

0 commit comments

Comments
 (0)
0