Skip to content
Snippets Groups Projects
Commit ef754fb5 authored by Simon Riggs's avatar Simon Riggs
Browse files

Correct xmax test for COPY FREEZE

parent 1f023f92
No related branches found
No related tags found
No related merge requests found
...@@ -258,11 +258,11 @@ BEGIN; ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment