fix organization wording in psql's \copyright command

Lists: pgsql-hackers
From: Nathan Bossart <nathandbossart(at)gmail(dot)com>
To: pgsql-hackers(at)postgresql(dot)org
Subject: fix organization wording in psql's \copyright command
Date: 2025-07-14 20:30:39
Message-ID: aHVo791guQR6uqwT@nathan
Views: Whole Thread | Raw Message | Download mbox | Resend email
Lists: pgsql-hackers

It looks like \copyright didn't get updated in commit 5987553. I plan to
back-patch this down to v13 once the tag for 18beta2 is pushed.

diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index a2e009ab9be..8c62729a0d1 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -748,7 +748,7 @@ void
print_copyright(void)
{
puts("PostgreSQL Database Management System\n"
- "(formerly known as Postgres, then as Postgres95)\n\n"
+ "(also known as Postgres, formerly known as Postgres95)\n\n"
"Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group\n\n"
"Portions Copyright (c) 1994, The Regents of the University of California\n\n"
"Permission to use, copy, modify, and distribute this software and its\n"

--
nathan


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Nathan Bossart <nathandbossart(at)gmail(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: fix organization wording in psql's \copyright command
Date: 2025-07-14 22:07:58
Message-ID: 792218.1752530878@sss.pgh.pa.us
Views: Whole Thread | Raw Message | Download mbox | Resend email
Lists: pgsql-hackers

Nathan Bossart <nathandbossart(at)gmail(dot)com> writes:
> It looks like \copyright didn't get updated in commit 5987553. I plan to
> back-patch this down to v13 once the tag for 18beta2 is pushed.

+1. I wonder if we missed any other places ... grepping for
"Postgres95" didn't find any, but ...

regards, tom lane


From: Daniel Gustafsson <daniel(at)yesql(dot)se>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Nathan Bossart <nathandbossart(at)gmail(dot)com>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: fix organization wording in psql's \copyright command
Date: 2025-07-14 22:29:32
Message-ID: 237FF28F-BE99-44E5-8E6F-6435C860AE9B@yesql.se
Views: Whole Thread | Raw Message | Download mbox | Resend email
Lists: pgsql-hackers

> On 15 Jul 2025, at 00:07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Nathan Bossart <nathandbossart(at)gmail(dot)com> writes:

>> It looks like \copyright didn't get updated in commit 5987553. I plan to
>> back-patch this down to v13 once the tag for 18beta2 is pushed.

Thanks!

> I wonder if we missed any other places ... grepping for
> "Postgres95" didn't find any, but ...

Grepping around with a bit of fuzzy matching I too was unable to find more
omissions.

--
Daniel Gustafsson


From: Nathan Bossart <nathandbossart(at)gmail(dot)com>
To: Daniel Gustafsson <daniel(at)yesql(dot)se>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: fix organization wording in psql's \copyright command
Date: 2025-07-16 16:55:48
Message-ID: aHfZlLQS1VlSsJ20@nathan
Views: Whole Thread | Raw Message | Download mbox | Resend email
Lists: pgsql-hackers

Committed. Thanks for the prompt reviews.

On Tue, Jul 15, 2025 at 12:29:32AM +0200, Daniel Gustafsson wrote:
>> On 15 Jul 2025, at 00:07, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
>> I wonder if we missed any other places ... grepping for
>> "Postgres95" didn't find any, but ...
>
> Grepping around with a bit of fuzzy matching I too was unable to find more
> omissions.

Same.

--
nathan