Copyright update for nbtsearch.c

Started by tanghy.fnst@fujitsu.comover 5 years ago6 messageshackers
Beta feature

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.

won't retrysuccessCI history

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:t43909
psql -h localhost -U postgres

Built 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.git

In a checkout you already have, add the fork once:

git remote add hackorum https://github.com/hackorum-dev/postgres.git

then, for this patchset and every later one:

git fetch hackorum t43909_1 && git checkout t43909_1

Patchset v1 (message #1) is on t43909_1

Jump to latest
#1tanghy.fnst@fujitsu.com
tanghy.fnst@fujitsu.com

Hi

Found one code committed at 2021.01.13 with copyright 2020.
Fix it in the attached patch.

Regards,
Tang

Attachments:

t43909_1
0001-Update-copyright-for-2021.patchapplication/octet-stream; name=0001-Update-copyright-for-2021.patchDownload+1-2
#2Michael Paquier
michael@paquier.xyz
In reply to: tanghy.fnst@fujitsu.com (#1)
Re: Copyright update for nbtsearch.c

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

#3Julien Rouhaud
rjuju123@gmail.com
In reply to: tanghy.fnst@fujitsu.com (#1)
Re: Copyright update for nbtsearch.c

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.

#4Michael Paquier
michael@paquier.xyz
In reply to: Julien Rouhaud (#3)
Re: Copyright update for nbtsearch.c

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

#5tanghy.fnst@fujitsu.com
tanghy.fnst@fujitsu.com
In reply to: Michael Paquier (#4)
RE: Copyright update for nbtsearch.c

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

#6Tom Lane
tgl@sss.pgh.pa.us
In reply to: Michael Paquier (#4)
Re: Copyright update for nbtsearch.c

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