summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/copy2.out
diff options
context:
space:
mode:
authorSimon Riggs <simon@2ndQuadrant.com>2012-12-07 14:18:47 +0000
committerSimon Riggs <simon@2ndQuadrant.com>2012-12-07 14:18:47 +0000
commitef754fb51b8a40c3b3dc0f3cc42f62eff77649db (patch)
tree3e62838f6469bb20f372efec83aa101a5b90df4a /src/test/regress/expected/copy2.out
parent1f023f929702efc9fd4230267b0f0e8d72ba5067 (diff)
downloadpostgresql-ef754fb51b8a40c3b3dc0f3cc42f62eff77649db.tar.gz
Correct xmax test for COPY FREEZE
Diffstat (limited to 'src/test/regress/expected/copy2.out')
-rw-r--r--src/test/regress/expected/copy2.out10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/regress/expected/copy2.out b/src/test/regress/expected/copy2.out
index 604c27a2f2..78c601fd9b 100644
--- a/src/test/regress/expected/copy2.out
+++ b/src/test/regress/expected/copy2.out
@@ -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;