Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 381cb04

Browse files
committed
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.
1 parent a5dba02 commit 381cb04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/regress/expected/join_1.out

+2-2
Original file line numberDiff line numberDiff line change
@@ -2197,16 +2197,16 @@ set enable_nestloop to off;
21972197
select tt1.*, tt2.* from tt1 left join tt2 on tt1.joincol = tt2.joincol;
21982198
tt1_id | joincol | tt2_id | joincol
21992199
--------+---------+--------+---------
2200-
1 | 11 | 21 | 11
22012200
1 | 11 | 22 | 11
2201+
1 | 11 | 21 | 11
22022202
2 | | |
22032203
(3 rows)
22042204

22052205
select tt1.*, tt2.* from tt2 right join tt1 on tt1.joincol = tt2.joincol;
22062206
tt1_id | joincol | tt2_id | joincol
22072207
--------+---------+--------+---------
2208-
1 | 11 | 21 | 11
22092208
1 | 11 | 22 | 11
2209+
1 | 11 | 21 | 11
22102210
2 | | |
22112211
(3 rows)
22122212

0 commit comments

Comments
 (0)