Commit 758fcfdc authored by Robert Haas's avatar Robert Haas

Comment update for join pushdown.

Etsuro Fujita
parent d1b7c1ff
...@@ -1449,13 +1449,13 @@ create_worktablescan_path(PlannerInfo *root, RelOptInfo *rel, ...@@ -1449,13 +1449,13 @@ create_worktablescan_path(PlannerInfo *root, RelOptInfo *rel,
/* /*
* create_foreignscan_path * create_foreignscan_path
* Creates a path corresponding to a scan of a foreign table, * Creates a path corresponding to a scan of a foreign table or
* returning the pathnode. * a foreign join, returning the pathnode.
* *
* This function is never called from core Postgres; rather, it's expected * This function is never called from core Postgres; rather, it's expected
* to be called by the GetForeignPaths function of a foreign data wrapper. * to be called by the GetForeignPaths or GetForeignJoinPaths function of
* We make the FDW supply all fields of the path, since we do not have any * a foreign data wrapper. We make the FDW supply all fields of the path,
* way to calculate them in core. * since we do not have any way to calculate them in core.
*/ */
ForeignPath * ForeignPath *
create_foreignscan_path(PlannerInfo *root, RelOptInfo *rel, create_foreignscan_path(PlannerInfo *root, RelOptInfo *rel,
......
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