]> granicus.if.org Git - postgresql/commitdiff
Adjust join_1.out to match Windows behavior for new mergejoin regression
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Mar 2006 01:19:42 +0000 (01:19 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 19 Mar 2006 01:19:42 +0000 (01:19 +0000)
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.

src/test/regress/expected/join_1.out

index 6a38234c1de384d548ff8f42c135139dd5d7f095..07291225b76bf44505a373e3e404333d905a8f8b 100644 (file)
@@ -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)