mirror of
https://github.com/postgres/postgres.git
synced 2025-07-21 16:02:15 +03:00
Correct xmax test for COPY FREEZE
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user