Commit 5c90a2ff authored by Robert Haas's avatar Robert Haas

Comment update.

Adjust to account for 5fc4c26d.

Etsuro Fujita
parent bf3d0156
...@@ -2141,11 +2141,12 @@ create_foreignscan_plan(PlannerInfo *root, ForeignPath *best_path, ...@@ -2141,11 +2141,12 @@ create_foreignscan_plan(PlannerInfo *root, ForeignPath *best_path,
scan_plan->fs_relids = best_path->path.parent->relids; scan_plan->fs_relids = best_path->path.parent->relids;
/* /*
* Replace any outer-relation variables with nestloop params in the qual * Replace any outer-relation variables with nestloop params in the qual,
* and fdw_exprs expressions. We do this last so that the FDW doesn't * fdw_exprs and fdw_recheck_quals expressions. We do this last so that
* have to be involved. (Note that parts of fdw_exprs could have come * the FDW doesn't have to be involved. (Note that parts of fdw_exprs
* from join clauses, so doing this beforehand on the scan_clauses * or fdw_recheck_quals could have come from join clauses, so doing this
* wouldn't work.) We assume fdw_scan_tlist contains no such variables. * beforehand on the scan_clauses wouldn't work.) We assume
* fdw_scan_tlist contains no such variables.
*/ */
if (best_path->path.param_info) if (best_path->path.param_info)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment