File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -6881,6 +6881,7 @@ WHERE t1.id = emp1.id RETURNING emp1.id, emp1.code;
6881
6881
(3 rows)
6882
6882
6883
6883
-- Check that SJE does not mistakenly omit qual clauses (bug #18187)
6884
+ insert into emp1 values (1, 1);
6884
6885
explain (costs off)
6885
6886
select 1 from emp1 full join
6886
6887
(select * from emp1 t1 join
Original file line number Diff line number Diff line change @@ -2623,6 +2623,7 @@ UPDATE emp1 SET code = t1.code + 1 FROM t1
2623
2623
WHERE t1 .id = emp1 .id RETURNING emp1 .id , emp1 .code ;
2624
2624
2625
2625
-- Check that SJE does not mistakenly omit qual clauses (bug #18187)
2626
+ insert into emp1 values (1 , 1 );
2626
2627
explain (costs off)
2627
2628
select 1 from emp1 full join
2628
2629
(select * from emp1 t1 join
You can’t perform that action at this time.
0 commit comments