Thread
Commits
-
Remove unnecessary word in a comment
- 0b8fb9e9239b 12.21 landed
- 884c1a4d17dc 13.17 landed
- c3316a3b8dcc 14.14 landed
- af4e342034d6 15.9 landed
- ad88b2020a68 16.5 landed
- f92f6b3db4fe 17.1 landed
- 55e6d712aff8 18.0 landed
-
Remove unnecessary word in a comment
Amit Langote <amitlangote09@gmail.com> — 2024-10-23T08:29:21Z
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
-
Re: Remove unnecessary word in a comment
Amit Langote <amitlangote09@gmail.com> — 2024-10-23T09:07:36Z
On Wed, Oct 23, 2024 at 5:29 PM Amit Langote <amitlangote09@gmail.com> wrote: > 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) Pushed in all branches. -- Thanks, Amit Langote