diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-19 01:19:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-19 01:19:42 +0000 |
commit | 381cb046ed60a1164a244e2f9aa28b8128ea2ac5 (patch) | |
tree | 157638434f966f8e097a1fb9b896042954808443 /src | |
parent | a5dba023593e208dcd9d128d4aa656177f15753e (diff) | |
download | postgresql-381cb046ed60a1164a244e2f9aa28b8128ea2ac5.tar.gz postgresql-381cb046ed60a1164a244e2f9aa28b8128ea2ac5.zip |
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')
-rw-r--r-- | src/test/regress/expected/join_1.out | 4 |
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 6a38234c1de..07291225b76 100644 --- a/src/test/regress/expected/join_1.out +++ b/src/test/regress/expected/join_1.out @@ -2197,16 +2197,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) |