aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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 604c27a2f2f..78c601fd9ba 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;