Skip to content

Commit 8cb653b

Browse files
committed
Fix incorrect year in some copyright notices added this year
A few patches that were written <= 2023 and committed in 2024 still contained 2023 copyright year. Fix that. Discussion: https://postgr.es/m/CAApHDvr5egyW3FmHbAg-Uq2p_Aizwco1Zjs6Vbq18KqN64-hRA@mail.gmail.com
1 parent 771fa58 commit 8cb653b

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

src/backend/postmaster/launch_backend.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* same state as after fork() on a Unix system.
2121
*
2222
*
23-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
23+
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
2424
* Portions Copyright (c) 1994, Regents of the University of California
2525
*
2626
* IDENTIFICATION

src/backend/tcop/backend_startup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* backend_startup.c
44
* Backend startup code
55
*
6-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
*

src/common/unicode/case_test.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* case_test.c
33
* Program to test Unicode case mapping functions.
44
*
5-
* Portions Copyright (c) 2017-2023, PostgreSQL Global Development Group
5+
* Portions Copyright (c) 2017-2024, PostgreSQL Global Development Group
66
*
77
* IDENTIFICATION
88
* src/common/unicode/case_test.c

src/common/unicode/generate-unicode_case_table.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Input: UnicodeData.txt
77
# Output: unicode_case_table.h
88
#
9-
# Copyright (c) 2000-2023, PostgreSQL Global Development Group
9+
# Copyright (c) 2000-2024, PostgreSQL Global Development Group
1010

1111
use strict;
1212
use warnings;
@@ -69,7 +69,7 @@
6969
* unicode_case_table.h
7070
* Case mapping and information table.
7171
*
72-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
72+
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
7373
* Portions Copyright (c) 1994, Regents of the University of California
7474
*
7575
* src/include/common/unicode_case_table.h

src/common/unicode_case.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* unicode_case.c
33
* Unicode case mapping and case conversion.
44
*
5-
* Portions Copyright (c) 2017-2023, PostgreSQL Global Development Group
5+
* Portions Copyright (c) 2017-2024, PostgreSQL Global Development Group
66
*
77
* IDENTIFICATION
88
* src/common/unicode_case.c

src/include/common/unicode_case.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* These definitions can be used by both frontend and backend code.
77
*
8-
* Copyright (c) 2017-2023, PostgreSQL Global Development Group
8+
* Copyright (c) 2017-2024, PostgreSQL Global Development Group
99
*
1010
* src/include/common/unicode_case.h
1111
*

src/include/common/unicode_case_table.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* unicode_case_table.h
44
* Case mapping and information table.
55
*
6-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* src/include/common/unicode_case_table.h

src/include/tcop/backend_startup.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* prototypes for backend_startup.c.
55
*
66
*
7-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
7+
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
1010
* src/include/tcop/backend_startup.h

0 commit comments

Comments
 (0)