Обсуждение: fix ancient typo in transformRelOptions()

Поиск
Список
Период
Сортировка

fix ancient typo in transformRelOptions()

От
Nathan Bossart
Дата:
I noticed that this function has a "namspace" parameter.  The attached
patch adds the missing 'e'.

-- 
nathan

Вложения

Re: fix ancient typo in transformRelOptions()

От
Álvaro Herrera
Дата:
On 2025-Aug-05, Nathan Bossart wrote:

> I noticed that this function has a "namspace" parameter.  The attached
> patch adds the missing 'e'.

I have vague recollections of it being this way because of "namespace"
being a C++ keyword.  (commit is 3a5b77371522, but I don't have energy
to look for the discussion right now.)

-- 
Álvaro Herrera        Breisgau, Deutschland  —  https://www.EnterpriseDB.com/
"We’ve narrowed the problem down to the customer’s pants being in a situation
 of vigorous combustion" (Robert Haas, Postgres expert extraordinaire)



Re: fix ancient typo in transformRelOptions()

От
Tom Lane
Дата:
=?utf-8?Q?=C3=81lvaro?= Herrera <alvherre@kurilemu.de> writes:
> On 2025-Aug-05, Nathan Bossart wrote:
>> I noticed that this function has a "namspace" parameter.  The attached
>> patch adds the missing 'e'.

> I have vague recollections of it being this way because of "namespace"
> being a C++ keyword.  (commit is 3a5b77371522, but I don't have energy
> to look for the discussion right now.)

Oh, duh -- if you try cpluspluscheck you'll find it's unhappy.
I didn't locate the discussion of "namspace" either, but I did
notice that de160e2c0 used "nameSpace" for the same purpose.
Maybe we should standardize on that?  It looks less like a typo
than "namspace", for sure.

            regards, tom lane



Re: fix ancient typo in transformRelOptions()

От
Álvaro Herrera
Дата:
On 2025-Aug-05, Tom Lane wrote:

> =?utf-8?Q?=C3=81lvaro?= Herrera <alvherre@kurilemu.de> writes:
> > On 2025-Aug-05, Nathan Bossart wrote:
> >> I noticed that this function has a "namspace" parameter.  The attached
> >> patch adds the missing 'e'.
> 
> > I have vague recollections of it being this way because of "namespace"
> > being a C++ keyword.  (commit is 3a5b77371522, but I don't have energy
> > to look for the discussion right now.)
> 
> Oh, duh -- if you try cpluspluscheck you'll find it's unhappy.
> I didn't locate the discussion of "namspace" either, but I did
> notice that de160e2c0 used "nameSpace" for the same purpose.
> Maybe we should standardize on that?  It looks less like a typo
> than "namspace", for sure.

WFM.

-- 
Álvaro Herrera               48°01'N 7°57'E  —  https://www.EnterpriseDB.com/
"No deja de ser humillante para una persona de ingenio saber
que no hay tonto que no le pueda enseñar algo." (Jean B. Say)



Re: fix ancient typo in transformRelOptions()

От
Nathan Bossart
Дата:
On Tue, Aug 05, 2025 at 06:10:54PM -0400, Tom Lane wrote:
> =?utf-8?Q?=C3=81lvaro?= Herrera <alvherre@kurilemu.de> writes:
>> On 2025-Aug-05, Nathan Bossart wrote:
>>> I noticed that this function has a "namspace" parameter.  The attached
>>> patch adds the missing 'e'.
> 
>> I have vague recollections of it being this way because of "namespace"
>> being a C++ keyword.  (commit is 3a5b77371522, but I don't have energy
>> to look for the discussion right now.)
> 
> Oh, duh -- if you try cpluspluscheck you'll find it's unhappy.
> I didn't locate the discussion of "namspace" either, but I did
> notice that de160e2c0 used "nameSpace" for the same purpose.
> Maybe we should standardize on that?  It looks less like a typo
> than "namspace", for sure.

That explains it.  I didn't find any past discussions about this particular
name, but commit de160e2 was being developed concurrently.  I'll use
nameSpace instead.

-- 
nathan



Re: fix ancient typo in transformRelOptions()

От
Ashutosh Bapat
Дата:
On Wed, Aug 6, 2025 at 2:33 AM Nathan Bossart <nathandbossart@gmail.com> wrote:
>
> I noticed that this function has a "namspace" parameter.  The attached
> patch adds the missing 'e'.

:)

Nobody seems to have been troubled by it for so long. Would fixing it
now create back-patching problems. Probably not since that code is old
enough to have less chances of bugs. So +1.
--
Best Wishes,
Ashutosh Bapat



Re: fix ancient typo in transformRelOptions()

От
Nathan Bossart
Дата:
On Tue, Aug 05, 2025 at 09:20:09PM -0500, Nathan Bossart wrote:
> That explains it.  I didn't find any past discussions about this particular
> name, but commit de160e2 was being developed concurrently.  I'll use
> nameSpace instead.

Committed.

-- 
nathan



Re: fix ancient typo in transformRelOptions()

От
Nathan Bossart
Дата:
On Wed, Aug 06, 2025 at 12:09:28PM -0500, Nathan Bossart wrote:
> On Tue, Aug 05, 2025 at 09:20:09PM -0500, Nathan Bossart wrote:
>> That explains it.  I didn't find any past discussions about this particular
>> name, but commit de160e2 was being developed concurrently.  I'll use
>> nameSpace instead.
> 
> Committed.

Any thoughts on back-patching this?  It's entirely cosmetic and could help
avoid some back-patching pain down the road.  I originally chose not to
back-patch because it's not a bug and "namspace" has been there for a very
long time, but now I'm having second thoughts...

-- 
nathan



Re: fix ancient typo in transformRelOptions()

От
Peter Eisentraut
Дата:
On 06.08.25 20:06, Nathan Bossart wrote:
> On Wed, Aug 06, 2025 at 12:09:28PM -0500, Nathan Bossart wrote:
>> On Tue, Aug 05, 2025 at 09:20:09PM -0500, Nathan Bossart wrote:
>>> That explains it.  I didn't find any past discussions about this particular
>>> name, but commit de160e2 was being developed concurrently.  I'll use
>>> nameSpace instead.
>>
>> Committed.
> 
> Any thoughts on back-patching this?  It's entirely cosmetic and could help
> avoid some back-patching pain down the road.  I originally chose not to
> back-patch because it's not a bug and "namspace" has been there for a very
> long time, but now I'm having second thoughts...

I'd leave it alone for now.  We could still choose to backpatch this one 
if we end up backpatching something that goes on top of it.




Re: fix ancient typo in transformRelOptions()

От
Tom Lane
Дата:
Nathan Bossart <nathandbossart@gmail.com> writes:
> Any thoughts on back-patching this?  It's entirely cosmetic and could help
> avoid some back-patching pain down the road.  I originally chose not to
> back-patch because it's not a bug and "namspace" has been there for a very
> long time, but now I'm having second thoughts...

AFAICS, it could only cause back-patching pain if we were to
back-patch something that changes the signature of
transformRelOptions(), which seems mighty unlikely.
So I wouldn't bother.

            regards, tom lane