aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/execUtils.c
diff options
context:
space:
mode:
authorAmit Langote <amitlan@postgresql.org>2024-10-23 17:54:48 +0900
committerAmit Langote <amitlan@postgresql.org>2024-10-23 17:55:31 +0900
commitc3316a3b8dccf4d9cd17d66f1984bf7d4ce38fa9 (patch)
tree802dedc656d34a3d8af8f7a07f7f2c2c0fe6d05a /src/backend/executor/execUtils.c
parent9a51d4af12a7add717f7f2e4b82985b3a7a092f4 (diff)
downloadpostgresql-c3316a3b8dccf4d9cd17d66f1984bf7d4ce38fa9.tar.gz
postgresql-c3316a3b8dccf4d9cd17d66f1984bf7d4ce38fa9.zip
Remove unnecessary word in a comment
Relations opened by the executor are only closed once in ExecCloseRangeTableRelations(), so the word "again" in the comment for ExecGetRangeTableRelation() is misleading and unnecessary. Discussion: https://postgr.es/m/CA+HiwqHnw-zR+u060i3jp4ky5UR0CjByRFQz50oZ05de7wUg=Q@mail.gmail.com Backpatch-through: 12
Diffstat (limited to 'src/backend/executor/execUtils.c')
-rw-r--r--src/backend/executor/execUtils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c
index b74b0684b39..7f82ac12b9c 100644
--- a/src/backend/executor/execUtils.c
+++ b/src/backend/executor/execUtils.c
@@ -782,7 +782,7 @@ ExecInitRangeTable(EState *estate, List *rangeTable)
* ExecGetRangeTableRelation
* Open the Relation for a range table entry, if not already done
*
- * The Relations will be closed again in ExecEndPlan().
+ * The Relations will be closed in ExecEndPlan().
*/
Relation
ExecGetRangeTableRelation(EState *estate, Index rti)