aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeForeignscan.c
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2021-09-07 10:28:55 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2021-09-07 10:28:55 +0300
commit6ac763f19a6556c43933c5252065a5c81cde094d (patch)
tree9fe9fab1d117caada22a136cac25f715363ab395 /src/backend/executor/nodeForeignscan.c
parent449ab6350526e99d33363706b759951ebad7928e (diff)
downloadpostgresql-6ac763f19a6556c43933c5252065a5c81cde094d.tar.gz
postgresql-6ac763f19a6556c43933c5252065a5c81cde094d.zip
Fix missing words in comment.
Introduced by commit c3928b467a, backpatch to v14 like that one. Author: Amit Langote Discussion: https://www.postgresql.org/message-id/CA+HiwqFQgNLS6VGntMcuJV6erBFV425xA6wBVnY=41GK4zC0Bw@mail.gmail.com
Diffstat (limited to 'src/backend/executor/nodeForeignscan.c')
-rw-r--r--src/backend/executor/nodeForeignscan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/executor/nodeForeignscan.c b/src/backend/executor/nodeForeignscan.c
index ad9edd26f17..1abd906b169 100644
--- a/src/backend/executor/nodeForeignscan.c
+++ b/src/backend/executor/nodeForeignscan.c
@@ -265,8 +265,9 @@ ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags)
{
/*
* Direct modifications cannot be re-evaluated by EvalPlanQual, so
- * don't bother preparing the FDW. There can ForeignScan nodes in the
- * EvalPlanQual subtree, but ExecForeignScan should never be called.
+ * don't bother preparing the FDW. There can be ForeignScan nodes in
+ * the EvalPlanQual subtree, but ExecForeignScan should never be
+ * called on them when EvalPlanQual is active.
*/
if (estate->es_epq_active == NULL)
fdwroutine->BeginDirectModify(scanstate, eflags);