Remove unnecessary word in a comment

Amit Langote <amitlangote09@gmail.com>

From: Amit Langote <amitlangote09@gmail.com>
To: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2024-10-23T08:29:21Z
Lists: pgsql-hackers

Attachments

Hi,

I think we should apply the attached which does this:

--- a/src/backend/executor/execUtils.c
+++ b/src/backend/executor/execUtils.c
@@ -758,7 +758,7 @@ ExecInitRangeTable(EState *estate, List
*rangeTable, List *permInfos)
  * 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)

-- 
Thanks, Amit Langote

Commits

  1. Remove unnecessary word in a comment