diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-08 14:30:12 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-08 14:30:12 -0500 |
commit | dff7ad3c61473a65ff8f166b1eefd099e68595bb (patch) | |
tree | 432c769a03f328945385a5b6103232e56420761d | |
parent | d29b153f180ba374e5e0e1f3e49762aba4a548d7 (diff) | |
download | postgresql-dff7ad3c61473a65ff8f166b1eefd099e68595bb.tar.gz postgresql-dff7ad3c61473a65ff8f166b1eefd099e68595bb.zip |
Update GetForeignPlan documentation.
Commit 385f337c9f39b21dca96ca4770552a10a6d5af24 added a new argument
to the FDW GetForeignPlan method, but failed to update the documentation
to match.
Etsuro Fujita
-rw-r--r-- | doc/src/sgml/fdwhandler.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml index 279daef2d16..e53458ea43c 100644 --- a/doc/src/sgml/fdwhandler.sgml +++ b/doc/src/sgml/fdwhandler.sgml @@ -178,7 +178,9 @@ GetForeignPlan (PlannerInfo *root, the selected <structname>ForeignPath</> (previously produced by <function>GetForeignPaths</> or <function>GetForeignJoinPaths</>), the target list to be emitted by the plan node, - and the restriction clauses to be enforced by the plan node. + the restriction clauses to be enforced by the plan node, + and the outer subplan of the <structname>ForeignScan</>, + which is used for rechecks performed by <function>RecheckForeignScan</>. (If the path is for a join rather than a base relation, <literal>foreigntableid</> is <literal>InvalidOid</>.) </para> |