Commit ef754fb5 authored by Simon Riggs's avatar Simon Riggs

Correct xmax test for COPY FREEZE

parent 1f023f92
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment