Skip to content
Snippets Groups Projects
Commit 209f675f authored by Tom Lane's avatar Tom Lane
Browse files

Fix documentation oversight.

Mention that PlanForeignModify's result must be copiable by copyObject.
parent 50c19fc7
No related branches found
No related tags found
No related merge requests found
...@@ -899,6 +899,10 @@ GetForeignServerByName(const char *name, bool missing_ok); ...@@ -899,6 +899,10 @@ GetForeignServerByName(const char *name, bool missing_ok);
<literal>baserel-&gt;fdw_private</> data previously created by the <literal>baserel-&gt;fdw_private</> data previously created by the
scan-planning functions. However, in <command>INSERT</> the target scan-planning functions. However, in <command>INSERT</> the target
table is not scanned so there is no <structname>RelOptInfo</> for it. table is not scanned so there is no <structname>RelOptInfo</> for it.
The <structname>List</> returned by <function>PlanForeignModify</> has
the same restrictions as the <structfield>fdw_private</> list of a
<structname>ForeignScan</> plan node, that is it must contain only
structures that <function>copyObject</> knows how to copy.
</para> </para>
<para> <para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment