diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-14 14:27:11 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-14 14:29:12 -0400 |
commit | 6be84eeb8d5a72014b1b6e44d0646f69531a1ccf (patch) | |
tree | d82b1b8ba9116ee21990a79f1bafeade51e33dbc /src/backend/optimizer | |
parent | 74a379b984d4df91acec2436a16c51caee3526af (diff) | |
download | postgresql-6be84eeb8d5a72014b1b6e44d0646f69531a1ccf.tar.gz postgresql-6be84eeb8d5a72014b1b6e44d0646f69531a1ccf.zip |
Update more comments for 96198d94cb7adc664bda341842dc8db671d8be72.
Etsuro Fujita, reviewed (though not completely endorsed) by Ashutosh
Bapat, and slightly expanded by me.
Diffstat (limited to 'src/backend/optimizer')
-rw-r--r-- | src/backend/optimizer/path/joinpath.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/optimizer/path/joinpath.c b/src/backend/optimizer/path/joinpath.c index 3b898dafee1..f3aced3c931 100644 --- a/src/backend/optimizer/path/joinpath.c +++ b/src/backend/optimizer/path/joinpath.c @@ -213,7 +213,8 @@ add_paths_to_joinrel(PlannerInfo *root, /* * 5. If inner and outer relations are foreign tables (or joins) belonging - * to the same server, give the FDW a chance to push down joins. + * to the same server and using the same user mapping, give the FDW a + * chance to push down joins. */ if (joinrel->fdwroutine && joinrel->fdwroutine->GetForeignJoinPaths) |