diff options
author | Amit Langote <amitlan@postgresql.org> | 2024-10-23 17:54:48 +0900 |
---|---|---|
committer | Amit Langote <amitlan@postgresql.org> | 2024-10-23 17:55:41 +0900 |
commit | 0b8fb9e9239b5d2de375f85012354e1ff977b81c (patch) | |
tree | debcf741cf6a97964a4239a005a3a581d3c46b37 /src | |
parent | 9ecfd8a48adf84ec5603a53a6e1a5add097ab56f (diff) |
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')
-rw-r--r-- | src/backend/executor/execUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execUtils.c b/src/backend/executor/execUtils.c index be397e5429f..13865dc7375 100644 --- a/src/backend/executor/execUtils.c +++ b/src/backend/executor/execUtils.c @@ -762,7 +762,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) |