Thread
Commits
-
psql: Fix note on project naming in output of \copyright.
- ecc5161a0bd3 19 (unreleased) landed
- c0a392c9e0de 17.6 landed
- 738ad9a53891 16.10 landed
- 4349206cc3c3 15.14 landed
- 40c66f8585bc 18.0 landed
- 149e6e7092e9 13.22 landed
- 0490d6efd2da 14.19 landed
-
Align organization wording in copyright statement
- 5987553fde2c 18.0 cited
-
fix organization wording in psql's \copyright command
Nathan Bossart <nathandbossart@gmail.com> — 2025-07-14T20:30:39Z
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 -
Re: fix organization wording in psql's \copyright command
Tom Lane <tgl@sss.pgh.pa.us> — 2025-07-14T22:07:58Z
Nathan Bossart <nathandbossart@gmail.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
-
Re: fix organization wording in psql's \copyright command
Daniel Gustafsson <daniel@yesql.se> — 2025-07-14T22:29:32Z
> On 15 Jul 2025, at 00:07, Tom Lane <tgl@sss.pgh.pa.us> wrote: > Nathan Bossart <nathandbossart@gmail.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
-
Re: fix organization wording in psql's \copyright command
Nathan Bossart <nathandbossart@gmail.com> — 2025-07-16T16:55:48Z
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@sss.pgh.pa.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