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

Commit 3ef1879

Browse files
committed
Fix an error in make_outerjoininfo introduced by my patch of 30-Aug: the code
neglected to test whether an outer join's join-condition actually refers to the lower outer join it is looking at. (The comment correctly described what was supposed to happen, but the code didn't do it...) This often resulted in adding an unnecessary constraint on the join order of the two outer joins, which was bad enough. However, it also seems to expose a performance problem in an older patch (from 15-Feb): once we've decided that there is a join ordering constraint, we will start trying clauseless joins between every combination of rels within the constraint, which pointlessly eats up lots of time and space if there are numerous rels below the outer join. That probably needs to be revisited :-(. Per gripe from Jakub Ouhrabka.
1 parent 5c4249c commit 3ef1879

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/backend/optimizer/plan/initsplan.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/optimizer/plan/initsplan.c,v 1.134 2007/10/04 20:44:47 tgl Exp $
11+
* $PostgreSQL: pgsql/src/backend/optimizer/plan/initsplan.c,v 1.135 2007/10/24 20:54:27 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -623,6 +623,7 @@ make_outerjoininfo(PlannerInfo *root,
623623
* rel in the lower OJ's min_righthand, not its whole syn_righthand.
624624
*/
625625
if (bms_overlap(left_rels, otherinfo->syn_righthand) &&
626+
bms_overlap(clause_relids, otherinfo->syn_righthand) &&
626627
!bms_overlap(strict_relids, otherinfo->min_righthand))
627628
{
628629
min_lefthand = bms_add_members(min_lefthand,

0 commit comments

Comments
 (0)