]> granicus.if.org Git - postgresql/commitdiff
Correct xmax test for COPY FREEZE
authorSimon Riggs <simon@2ndQuadrant.com>
Fri, 7 Dec 2012 14:18:47 +0000 (14:18 +0000)
committerSimon Riggs <simon@2ndQuadrant.com>
Fri, 7 Dec 2012 14:18:47 +0000 (14:18 +0000)
src/test/regress/expected/copy2.out

index 604c27a2f2fa89dd38dcd13ad6cd0c3bc4a5e717..78c601fd9ba99ab17294bc10f7fc4bd615251425 100644 (file)
@@ -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;