Skip to content

Commit e66add7

Browse files
committed
Fix missing words in comment.
Introduced by commit c3928b4, backpatch to v14 like that one. Author: Amit Langote Discussion: https://www.postgresql.org/message-id/CA+HiwqFQgNLS6VGntMcuJV6erBFV425xA6wBVnY=41GK4zC0Bw@mail.gmail.com
1 parent 47d54b6 commit e66add7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/backend/executor/nodeForeignscan.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,9 @@ ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags)
265265
{
266266
/*
267267
* Direct modifications cannot be re-evaluated by EvalPlanQual, so
268-
* don't bother preparing the FDW. There can ForeignScan nodes in the
269-
* EvalPlanQual subtree, but ExecForeignScan should never be called.
268+
* don't bother preparing the FDW. There can be ForeignScan nodes in
269+
* the EvalPlanQual subtree, but ExecForeignScan should never be
270+
* called on them when EvalPlanQual is active.
270271
*/
271272
if (estate->es_epq_active == NULL)
272273
fdwroutine->BeginDirectModify(scanstate, eflags);

0 commit comments

Comments
 (0)