summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTom Lane2006-03-19 01:19:55 +0000
committerTom Lane2006-03-19 01:19:55 +0000
commita9f18b97ba958ac70ca3f7a1786f434243270d8e (patch)
tree03d6049c0a0f63c83d57049a501c0fc92bf55bdf /src/test
parente78be57d19c06a2bbc007acc992ee8e244cbf69e (diff)
Adjust join_1.out to match Windows behavior for new mergejoin regression
test, per Dave Page and buildfarm. Perhaps we will need a join_2 instead, but for the moment assume that this test tracks the other diffs.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/join_1.out4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/join_1.out b/src/test/regress/expected/join_1.out
index 51e14a7d6ab..21b364dbb0f 100644
--- a/src/test/regress/expected/join_1.out
+++ b/src/test/regress/expected/join_1.out
@@ -2199,16 +2199,16 @@ set enable_nestloop to off;
select tt1.*, tt2.* from tt1 left join tt2 on tt1.joincol = tt2.joincol;
tt1_id | joincol | tt2_id | joincol
--------+---------+--------+---------
- 1 | 11 | 21 | 11
1 | 11 | 22 | 11
+ 1 | 11 | 21 | 11
2 | | |
(3 rows)
select tt1.*, tt2.* from tt2 right join tt1 on tt1.joincol = tt2.joincol;
tt1_id | joincol | tt2_id | joincol
--------+---------+--------+---------
- 1 | 11 | 21 | 11
1 | 11 | 22 | 11
+ 1 | 11 | 21 | 11
2 | | |
(3 rows)