aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2022-01-28 15:45:00 +0900
committerEtsuro Fujita <efujita@postgresql.org>2022-01-28 15:45:00 +0900
commiteabcfd99ed27e5d21fee91fc7007678589081f58 (patch)
tree809063dd295b6e9fece4462911bc7f851eaa6800
parent108505d763d12bc2d9d21697f57c331963aa12d1 (diff)
downloadpostgresql-eabcfd99ed27e5d21fee91fc7007678589081f58.tar.gz
postgresql-eabcfd99ed27e5d21fee91fc7007678589081f58.zip
Fix typo in comment.
-rw-r--r--src/backend/executor/nodeForeignscan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/nodeForeignscan.c b/src/backend/executor/nodeForeignscan.c
index c22d0e76517..847e41856cd 100644
--- a/src/backend/executor/nodeForeignscan.c
+++ b/src/backend/executor/nodeForeignscan.c
@@ -238,7 +238,7 @@ ExecInitForeignScan(ForeignScan *node, EState *estate, int eflags)
* see ExecInitModifyTable.
*
* Don't try to look up the ResultRelInfo when EvalPlanQual is active,
- * though. Direct modififications cannot be re-evaluated as part of
+ * though. Direct modifications cannot be re-evaluated as part of
* EvalPlanQual. The lookup wouldn't work anyway because during
* EvalPlanQual processing, EvalPlanQual only initializes the subtree
* under the ModifyTable, and doesn't run ExecInitModifyTable.