aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 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)