1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Correct xmax test for COPY FREEZE

This commit is contained in:
Simon Riggs 2012-12-07 14:18:47 +00:00
parent 1f023f9297
commit ef754fb51b

View File

@ -258,11 +258,11 @@ BEGIN;
CREATE TABLE vistest (LIKE testeoc);
COPY vistest FROM stdin CSV;
COMMIT;
SELECT xmax, * FROM vistest;
xmax | a
------+----
0 | a0
0 | b
SELECT * FROM vistest;
a
----
a0
b
(2 rows)
BEGIN;