aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeModifyTable.c
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2022-03-19 19:31:38 +0100
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2022-03-19 19:34:04 +0100
commita1fc50672c4b410f6a75db1efe807efeaccf571c (patch)
tree47e07a4dd3a03fe0424d24b565be4bd63fdbd8e4 /src/backend/executor/nodeModifyTable.c
parenteb8399cf1f3dd8ad02633e3bb84e2289d2debb44 (diff)
downloadpostgresql-a1fc50672c4b410f6a75db1efe807efeaccf571c.tar.gz
postgresql-a1fc50672c4b410f6a75db1efe807efeaccf571c.zip
Fix an outdated and grammatically wrong comment
Authored by Amit Langote and myself independently Discussion: https://postgr.es/m/CA+HiwqGCjcH0gG-=tM7hhP7TEDmzrHMHJbPGSHtHgFmx9mnFkg@mail.gmail.com
Diffstat (limited to 'src/backend/executor/nodeModifyTable.c')
-rw-r--r--src/backend/executor/nodeModifyTable.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/executor/nodeModifyTable.c b/src/backend/executor/nodeModifyTable.c
index 6239abae904..babf26810b7 100644
--- a/src/backend/executor/nodeModifyTable.c
+++ b/src/backend/executor/nodeModifyTable.c
@@ -1517,9 +1517,9 @@ ldelete:;
* for the caller.
*
* False is returned if the tuple we're trying to move is found to have been
- * concurrently updated. In that case, the caller must to check if the
- * updated tuple that's returned in *retry_slot still needs to be re-routed,
- * and call this function again or perform a regular update accordingly.
+ * concurrently updated. In that case, the caller must check if the updated
+ * tuple (in updateCxt->cpUpdateRetrySlot) still needs to be re-routed, and
+ * call this function again or perform a regular update accordingly.
*/
static bool
ExecCrossPartitionUpdate(ModifyTableContext *context,