diff options
author | Robert Haas <rhaas@postgresql.org> | 2017-11-10 10:55:09 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2017-11-10 10:55:09 -0500 |
commit | b9941d3468505aea8bfdd74840b753ed27b9d29f (patch) | |
tree | dc21bc404ab4aa0ad9129b9dec7cdef89f519f2d | |
parent | 9a8d3c4eeaf34966056a41a263c6e2ca4d5e4012 (diff) | |
download | postgresql-b9941d3468505aea8bfdd74840b753ed27b9d29f.tar.gz postgresql-b9941d3468505aea8bfdd74840b753ed27b9d29f.zip |
Fix incorrect comment.
Etsuro Fujita
Discussion: http://postgr.es/m/5A05728E.4050009@lab.ntt.co.jp
-rw-r--r-- | src/backend/optimizer/util/relnode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/optimizer/util/relnode.c b/src/backend/optimizer/util/relnode.c index 3bd1063aa89..cb94c318a71 100644 --- a/src/backend/optimizer/util/relnode.c +++ b/src/backend/optimizer/util/relnode.c @@ -676,8 +676,7 @@ build_join_rel(PlannerInfo *root, * 'sjinfo': child-join context info * 'restrictlist': list of RestrictInfo nodes that apply to this particular * pair of joinable relations - * 'join_appinfos': list of AppendRelInfo nodes for base child relations - * involved in this join + * 'jointype' is the join type (inner, left, full, etc) */ RelOptInfo * build_child_join_rel(PlannerInfo *root, RelOptInfo *outer_rel, |