aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2012-10-10 13:54:43 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2012-10-10 13:55:41 -0400
commit812d6db94327476f5b6ccd6b68ea1b315cd7f020 (patch)
tree130461945beb75a67e7b460fbff959f5d4f869b1
parentc33d6ef57dbaf2c98192b9f5e4b75c7539116e70 (diff)
downloadpostgresql-812d6db94327476f5b6ccd6b68ea1b315cd7f020.tar.gz
postgresql-812d6db94327476f5b6ccd6b68ea1b315cd7f020.zip
Update obsolete text in fdwhandler.sgml.
Etsuro Fujita, with some wording adjustment by me.
-rw-r--r--doc/src/sgml/fdwhandler.sgml7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/src/sgml/fdwhandler.sgml b/doc/src/sgml/fdwhandler.sgml
index 8f1782882ff..2d604ed583f 100644
--- a/doc/src/sgml/fdwhandler.sgml
+++ b/doc/src/sgml/fdwhandler.sgml
@@ -537,9 +537,10 @@ GetForeignServerByName(const char *name, bool missing_ok);
<replaceable>local_variable</>. Such clauses will not be found in
<literal>baserel-&gt;baserestrictinfo</> but must be sought in the
relation's join lists. A path using such a clause is called a
- <quote>parameterized path</>. It must show the other relation(s) as
- <literal>required_outer</> and list the specific join clause(s) in
- <literal>param_clauses</>. In <function>GetForeignPlan</>, the
+ <quote>parameterized path</>. It must identify the other relations
+ used in the selected join clause(s) with a suitable value of
+ <literal>param_info</>; use <function>get_baserel_parampathinfo</>
+ to compute that value. In <function>GetForeignPlan</>, the
<replaceable>local_variable</> portion of the join clause would be added
to <structfield>fdw_exprs</>, and then at run time the case works the
same as for an ordinary restriction clause.