diff options
| author | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 | 
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 2012-06-10 15:20:04 -0400 | 
| commit | 927d61eeff78363ea3938c818d07e511ebaf75cf (patch) | |
| tree | 2f0bcecf53327f76272a8ce690fa62505520fab9 /src/backend/optimizer/prep/prepjointree.c | |
| parent | 60801944fa105252b48ea5688d47dfc05c695042 (diff) | |
Run pgindent on 9.2 source tree in preparation for first 9.3
commit-fest.
Diffstat (limited to 'src/backend/optimizer/prep/prepjointree.c')
| -rw-r--r-- | src/backend/optimizer/prep/prepjointree.c | 22 | 
1 files changed, 14 insertions, 8 deletions
| diff --git a/src/backend/optimizer/prep/prepjointree.c b/src/backend/optimizer/prep/prepjointree.c index 47ddae6992f..be1219eb3d1 100644 --- a/src/backend/optimizer/prep/prepjointree.c +++ b/src/backend/optimizer/prep/prepjointree.c @@ -332,6 +332,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  				j->rarg = pull_up_sublinks_jointree_recurse(root,  															j->rarg,  															&child_rels); +  				/*  				 * Now recursively process the pulled-up quals.  Any inserted  				 * joins can get stacked onto either j->larg or j->rarg, @@ -357,6 +358,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  				j->rarg = pull_up_sublinks_jointree_recurse(root,  															j->rarg,  															&child_rels); +  				/*  				 * Now recursively process the pulled-up quals.  Any inserted  				 * joins can get stacked onto either j->larg or j->rarg, @@ -384,6 +386,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  				j->rarg = pull_up_sublinks_jointree_recurse(root,  															j->rarg,  															&child_rels); +  				/*  				 * Now recursively process the pulled-up quals.  Any inserted  				 * joins can get stacked onto either j->larg or j->rarg, @@ -409,6 +412,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  				j->rarg = pull_up_sublinks_jointree_recurse(root,  															j->rarg,  															&child_rels); +  				/*  				 * Now recursively process the pulled-up quals.  Any inserted  				 * joins can get stacked onto either j->larg or j->rarg, @@ -439,7 +443,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  			if (sublink->subLinkType == EXISTS_SUBLINK)  			{  				if ((j = convert_EXISTS_sublink_to_join(root, sublink, true, -														available_rels1)) != NULL) +												   available_rels1)) != NULL)  				{  					/* Yes; insert the new join node into the join tree */  					j->larg = *jtlink1; @@ -448,11 +452,12 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  					j->rarg = pull_up_sublinks_jointree_recurse(root,  																j->rarg,  																&child_rels); +  					/*  					 * Now recursively process the pulled-up quals.  Because -					 * we are underneath a NOT, we can't pull up sublinks -					 * that reference the left-hand stuff, but it's still -					 * okay to pull up sublinks referencing j->rarg. +					 * we are underneath a NOT, we can't pull up sublinks that +					 * reference the left-hand stuff, but it's still okay to +					 * pull up sublinks referencing j->rarg.  					 */  					j->quals = pull_up_sublinks_qual_recurse(root,  															 j->quals, @@ -464,7 +469,7 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  				}  				if (available_rels2 != NULL &&  					(j = convert_EXISTS_sublink_to_join(root, sublink, true, -														available_rels2)) != NULL) +												   available_rels2)) != NULL)  				{  					/* Yes; insert the new join node into the join tree */  					j->larg = *jtlink2; @@ -473,11 +478,12 @@ pull_up_sublinks_qual_recurse(PlannerInfo *root, Node *node,  					j->rarg = pull_up_sublinks_jointree_recurse(root,  																j->rarg,  																&child_rels); +  					/*  					 * Now recursively process the pulled-up quals.  Because -					 * we are underneath a NOT, we can't pull up sublinks -					 * that reference the left-hand stuff, but it's still -					 * okay to pull up sublinks referencing j->rarg. +					 * we are underneath a NOT, we can't pull up sublinks that +					 * reference the left-hand stuff, but it's still okay to +					 * pull up sublinks referencing j->rarg.  					 */  					j->quals = pull_up_sublinks_qual_recurse(root,  															 j->quals, | 
