projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1f023f9
)
Correct xmax test for COPY FREEZE
author
Simon Riggs
<
[email protected]
>
Fri, 7 Dec 2012 14:18:47 +0000
(14:18 +0000)
committer
Simon Riggs
<
[email protected]
>
Fri, 7 Dec 2012 14:18:47 +0000
(14:18 +0000)
src/test/regress/expected/copy2.out
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/expected/copy2.out
b/src/test/regress/expected/copy2.out
index 604c27a2f2fa89dd38dcd13ad6cd0c3bc4a5e717..78c601fd9ba99ab17294bc10f7fc4bd615251425 100644
(file)
--- 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;