mirror of
https://github.com/postgres/postgres.git
synced 2026-02-25 19:02:00 -05:00
Correct xmax test for COPY FREEZE
This commit is contained in:
parent
1f023f9297
commit
ef754fb51b
1 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue