Copyright update for nbtsearch.c
Hackorum builds and tests every patch posted to the lists, not only commitfest submissions. This is Hackorum's own CI rather than the PostgreSQL project's, and it is still under testing - please report anything that looks wrong.
You can run a PostgreSQL built from this patch straight from Docker, with no checkout and no build:
docker run --rm -p 5432:5432 ghcr.io/hackorum-dev/postgres-patch:t43909psql -h localhost -U postgresBuilt from patchset v1 (message #1), July 27, 2026 at 05:15 PM.
Every patchset is also pushed to a branch of our PostgreSQL fork, so you can check out the same tree CI built. Without a PostgreSQL checkout:
git clone --branch t43909_1 https://github.com/hackorum-dev/postgres.gitIn a checkout you already have, add the fork once:
git remote add hackorum https://github.com/hackorum-dev/postgres.gitthen, for this patchset and every later one:
git fetch hackorum t43909_1 && git checkout t43909_1Patchset v1 (message #1) is on t43909_1
On Tue, Mar 30, 2021 at 02:51:26AM +0000, tanghy.fnst@fujitsu.com wrote:
Found one code committed at 2021.01.13 with copyright 2020.
Fix it in the attached patch.
Thanks. If I look at the top of HEAD, it is not the only place. I am
to blame for some of them like src/common/sha1. Will fix in a couple
of minutes the whole set.
--
Michael
Hi,
On Tue, Mar 30, 2021 at 10:51 AM tanghy.fnst@fujitsu.com
<tanghy.fnst@fujitsu.com> wrote:
Hi
Found one code committed at 2021.01.13 with copyright 2020.
Fix it in the attached patch.
This is actually gistfuncs.c. There are other files impacted
(jsonbsubs, hex, sha1, pg_iovec and rewriteSearchCycle) see
/messages/by-id/20210323143438.GB579@momjian.us.
On Tue, Mar 30, 2021 at 11:09:47AM +0800, Julien Rouhaud wrote:
This is actually gistfuncs.c. There are other files impacted
(jsonbsubs, hex, sha1, pg_iovec and rewriteSearchCycle) see
/messages/by-id/20210323143438.GB579@momjian.us.
Ah, thanks. I did not notice this one. Let's leave that alone then,
except if there are more people in favor of fixing the whole set.
--
Michael
On Tue, Mar 30, 2021 at 11:09:47AM +0800, Julien Rouhaud wrote:
This is actually gistfuncs.c.
Thanks, you are right. There's typo in the mail title.
Sorry for your confusion.
On Tuesday, March 30, 2021 12:08 PM, Michael Paquier wrote:
Thanks. If I look at the top of HEAD, it is not the only place. I am
to blame for some of them like src/common/sha1. Will fix in a couple
of minutes the whole set.
Thanks. Please feel free to fix this issue.
Regards,
Tang
Michael Paquier <michael@paquier.xyz> writes:
Ah, thanks. I did not notice this one. Let's leave that alone then,
except if there are more people in favor of fixing the whole set.
Might be worth running Bruce's copyright-update script again, though
I'd suggest waiting till after the CF closes. We might be seeing a
few more of these land in the next few days.
regards, tom lane