aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEtsuro Fujita <efujita@postgresql.org>2022-01-28 15:45:01 +0900
committerEtsuro Fujita <efujita@postgresql.org>2022-01-28 15:45:01 +0900
commitd99166ed4f6e9f370289a90dd6678c06bfffd41f (patch)
tree353d3a7761b0af04aacc408787cd883e4c0537a9
parent6e7ee55e727771d97d0fce531a5cda350bb3fa84 (diff)
downloadpostgresql-d99166ed4f6e9f370289a90dd6678c06bfffd41f.tar.gz
postgresql-d99166ed4f6e9f370289a90dd6678c06bfffd41f.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 1abd906b169..41c23f687db 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.