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); CREATE TABLE vistest (LIKE testeoc);
COPY vistest FROM stdin CSV; COPY vistest FROM stdin CSV;
COMMIT; COMMIT;
SELECT xmax, * FROM vistest; SELECT * FROM vistest;
xmax | a a
------+---- ----
0 | a0 a0
0 | b b
(2 rows) (2 rows)
BEGIN; BEGIN;