summaryrefslogtreecommitdiff
path: root/src/port
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2026-01-01 13:24:10 -0500
committerBruce Momjian <bruce@momjian.us>2026-01-01 13:24:10 -0500
commit451c43974f8e199097d97624a4952ad0973cea61 (patch)
tree8a36348c0999fd7aebb2c4d2b344f6462faf3838 /src/port
parentf3c9e341cdf167ae3378e74e770558e81f9aa48e (diff)
Update copyright for 2026HEADorigin/masterorigin/HEADmaster
Backpatch-through: 14
Diffstat (limited to 'src/port')
-rw-r--r--src/port/bsearch_arg.c2
-rw-r--r--src/port/chklocale.c2
-rw-r--r--src/port/dirent.c2
-rw-r--r--src/port/dirmod.c2
-rw-r--r--src/port/explicit_bzero.c2
-rw-r--r--src/port/getpeereid.c2
-rw-r--r--src/port/kill.c2
-rw-r--r--src/port/meson.build2
-rw-r--r--src/port/mkdtemp.c2
-rw-r--r--src/port/noblock.c2
-rw-r--r--src/port/open.c2
-rw-r--r--src/port/path.c2
-rw-r--r--src/port/pg_bitutils.c2
-rw-r--r--src/port/pg_crc32c_armv8.c2
-rw-r--r--src/port/pg_crc32c_armv8_choose.c2
-rw-r--r--src/port/pg_crc32c_loongarch.c2
-rw-r--r--src/port/pg_crc32c_sb8.c2
-rw-r--r--src/port/pg_crc32c_sse42.c2
-rw-r--r--src/port/pg_crc32c_sse42_choose.c2
-rw-r--r--src/port/pg_localeconv_r.c2
-rw-r--r--src/port/pg_numa.c2
-rw-r--r--src/port/pg_popcount_aarch64.c2
-rw-r--r--src/port/pg_popcount_avx512.c2
-rw-r--r--src/port/pg_strong_random.c2
-rw-r--r--src/port/pgcheckdir.c2
-rw-r--r--src/port/pgsleep.c2
-rw-r--r--src/port/pgstrcasecmp.c2
-rw-r--r--src/port/pgstrsignal.c2
-rw-r--r--src/port/pqsignal.c2
-rw-r--r--src/port/pthread_barrier_wait.c2
-rw-r--r--src/port/quotes.c2
-rw-r--r--src/port/snprintf.c2
-rw-r--r--src/port/strerror.c2
-rw-r--r--src/port/strlcpy.c2
-rw-r--r--src/port/strnlen.c2
-rw-r--r--src/port/strtof.c2
-rw-r--r--src/port/system.c2
-rw-r--r--src/port/win32common.c2
-rw-r--r--src/port/win32dlopen.c2
-rw-r--r--src/port/win32env.c2
-rw-r--r--src/port/win32error.c2
-rw-r--r--src/port/win32fdatasync.c2
-rw-r--r--src/port/win32fseek.c2
-rw-r--r--src/port/win32gai_strerror.c2
-rw-r--r--src/port/win32getrusage.c2
-rw-r--r--src/port/win32link.c2
-rw-r--r--src/port/win32ntdll.c2
-rw-r--r--src/port/win32pread.c2
-rw-r--r--src/port/win32pwrite.c2
-rw-r--r--src/port/win32security.c2
-rw-r--r--src/port/win32setlocale.c2
-rw-r--r--src/port/win32stat.c2
-rw-r--r--src/port/win32ver.rc2
53 files changed, 53 insertions, 53 deletions
diff --git a/src/port/bsearch_arg.c b/src/port/bsearch_arg.c
index e9798aa8ee6..bc2db8239cd 100644
--- a/src/port/bsearch_arg.c
+++ b/src/port/bsearch_arg.c
@@ -1,7 +1,7 @@
/*
* bsearch_arg.c: bsearch variant with a user-supplied pointer
*
- * Copyright (c) 2021-2025, PostgreSQL Global Development Group
+ * Copyright (c) 2021-2026, PostgreSQL Global Development Group
* Copyright (c) 1990 Regents of the University of California.
* All rights reserved.
*
diff --git a/src/port/chklocale.c b/src/port/chklocale.c
index 023a7435c9b..664eeab9050 100644
--- a/src/port/chklocale.c
+++ b/src/port/chklocale.c
@@ -4,7 +4,7 @@
* Functions for handling locale-related info
*
*
- * Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/dirent.c b/src/port/dirent.c
index a10484ea32c..0505bdf9dc9 100644
--- a/src/port/dirent.c
+++ b/src/port/dirent.c
@@ -3,7 +3,7 @@
* dirent.c
* opendir/readdir/closedir for win32/msvc
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/dirmod.c b/src/port/dirmod.c
index c1187d249de..467b50d6f09 100644
--- a/src/port/dirmod.c
+++ b/src/port/dirmod.c
@@ -3,7 +3,7 @@
* dirmod.c
* directory handling functions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* This includes replacement versions of functions that work on
diff --git a/src/port/explicit_bzero.c b/src/port/explicit_bzero.c
index 53766e86e94..2147fc3b315 100644
--- a/src/port/explicit_bzero.c
+++ b/src/port/explicit_bzero.c
@@ -2,7 +2,7 @@
*
* explicit_bzero.c
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/getpeereid.c b/src/port/getpeereid.c
index 345478599a0..e1371171a03 100644
--- a/src/port/getpeereid.c
+++ b/src/port/getpeereid.c
@@ -3,7 +3,7 @@
* getpeereid.c
* get peer userid for UNIX-domain socket connection
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/kill.c b/src/port/kill.c
index 72fac20d507..343c88628d7 100644
--- a/src/port/kill.c
+++ b/src/port/kill.c
@@ -3,7 +3,7 @@
* kill.c
* kill()
*
- * Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* This is a replacement version of kill for Win32 which sends
* signals that the backend can recognize.
diff --git a/src/port/meson.build b/src/port/meson.build
index fc7b059fee5..c1ef6fd4821 100644
--- a/src/port/meson.build
+++ b/src/port/meson.build
@@ -1,4 +1,4 @@
-# Copyright (c) 2022-2025, PostgreSQL Global Development Group
+# Copyright (c) 2022-2026, PostgreSQL Global Development Group
pgport_sources = [
'bsearch_arg.c',
diff --git a/src/port/mkdtemp.c b/src/port/mkdtemp.c
index 027b95723fe..7f8edc8a02d 100644
--- a/src/port/mkdtemp.c
+++ b/src/port/mkdtemp.c
@@ -3,7 +3,7 @@
* mkdtemp.c
* create a mode-0700 temporary directory
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/noblock.c b/src/port/noblock.c
index eee4d42d861..c4a6080990a 100644
--- a/src/port/noblock.c
+++ b/src/port/noblock.c
@@ -3,7 +3,7 @@
* noblock.c
* set a file descriptor as blocking or non-blocking
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/open.c b/src/port/open.c
index ec0fbf29e92..2cd26060aa3 100644
--- a/src/port/open.c
+++ b/src/port/open.c
@@ -4,7 +4,7 @@
* Win32 open() replacement
*
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* src/port/open.c
*
diff --git a/src/port/path.c b/src/port/path.c
index 63503409d5a..2395b96fd3b 100644
--- a/src/port/path.c
+++ b/src/port/path.c
@@ -3,7 +3,7 @@
* path.c
* portable path handling routines
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_bitutils.c b/src/port/pg_bitutils.c
index 61c7388f474..7875bbb0f4b 100644
--- a/src/port/pg_bitutils.c
+++ b/src/port/pg_bitutils.c
@@ -3,7 +3,7 @@
* pg_bitutils.c
* Miscellaneous functions for bit-wise operations.
*
- * Copyright (c) 2019-2025, PostgreSQL Global Development Group
+ * Copyright (c) 2019-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_bitutils.c
diff --git a/src/port/pg_crc32c_armv8.c b/src/port/pg_crc32c_armv8.c
index 5ba070bb99d..2b669276a14 100644
--- a/src/port/pg_crc32c_armv8.c
+++ b/src/port/pg_crc32c_armv8.c
@@ -3,7 +3,7 @@
* pg_crc32c_armv8.c
* Compute CRC-32C checksum using ARMv8 CRC Extension instructions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_armv8_choose.c b/src/port/pg_crc32c_armv8_choose.c
index c0001cfe2dc..a1f0e540c6b 100644
--- a/src/port/pg_crc32c_armv8_choose.c
+++ b/src/port/pg_crc32c_armv8_choose.c
@@ -8,7 +8,7 @@
* computation. Otherwise, fall back to the pure software implementation
* (slicing-by-8).
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_loongarch.c b/src/port/pg_crc32c_loongarch.c
index 90679ce0d0c..f0afc7119dd 100644
--- a/src/port/pg_crc32c_loongarch.c
+++ b/src/port/pg_crc32c_loongarch.c
@@ -3,7 +3,7 @@
* pg_crc32c_loongarch.c
* Compute CRC-32C checksum using LoongArch CRCC instructions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sb8.c b/src/port/pg_crc32c_sb8.c
index 19659d186a0..b91667ad29c 100644
--- a/src/port/pg_crc32c_sb8.c
+++ b/src/port/pg_crc32c_sb8.c
@@ -8,7 +8,7 @@
* Generation", IEEE Transactions on Computers, vol.57, no. 11,
* pp. 1550-1560, November 2008, doi:10.1109/TC.2008.85
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sse42.c b/src/port/pg_crc32c_sse42.c
index 1a717255355..c1279d31fbd 100644
--- a/src/port/pg_crc32c_sse42.c
+++ b/src/port/pg_crc32c_sse42.c
@@ -3,7 +3,7 @@
* pg_crc32c_sse42.c
* Compute CRC-32C checksum using Intel SSE 4.2 or AVX-512 instructions.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_crc32c_sse42_choose.c b/src/port/pg_crc32c_sse42_choose.c
index 74d2421ba2b..f586476964f 100644
--- a/src/port/pg_crc32c_sse42_choose.c
+++ b/src/port/pg_crc32c_sse42_choose.c
@@ -8,7 +8,7 @@
* computation. Otherwise, fall back to the pure software implementation
* (slicing-by-8).
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_localeconv_r.c b/src/port/pg_localeconv_r.c
index 61510b2e0ea..640cb97a62e 100644
--- a/src/port/pg_localeconv_r.c
+++ b/src/port/pg_localeconv_r.c
@@ -3,7 +3,7 @@
* pg_localeconv_r.c
* Thread-safe implementations of localeconv()
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pg_numa.c b/src/port/pg_numa.c
index 540ada3f8ef..d574a686b42 100644
--- a/src/port/pg_numa.c
+++ b/src/port/pg_numa.c
@@ -4,7 +4,7 @@
* Basic NUMA portability routines
*
*
- * Copyright (c) 2025, PostgreSQL Global Development Group
+ * Copyright (c) 2025-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/pg_popcount_aarch64.c b/src/port/pg_popcount_aarch64.c
index 0b6b86de4d0..cda73cf6088 100644
--- a/src/port/pg_popcount_aarch64.c
+++ b/src/port/pg_popcount_aarch64.c
@@ -3,7 +3,7 @@
* pg_popcount_aarch64.c
* Holds the AArch64 popcount implementations.
*
- * Copyright (c) 2025, PostgreSQL Global Development Group
+ * Copyright (c) 2025-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_popcount_aarch64.c
diff --git a/src/port/pg_popcount_avx512.c b/src/port/pg_popcount_avx512.c
index 80c0aee3e73..407b610bacb 100644
--- a/src/port/pg_popcount_avx512.c
+++ b/src/port/pg_popcount_avx512.c
@@ -3,7 +3,7 @@
* pg_popcount_avx512.c
* Holds the AVX-512 pg_popcount() implementation.
*
- * Copyright (c) 2024-2025, PostgreSQL Global Development Group
+ * Copyright (c) 2024-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_popcount_avx512.c
diff --git a/src/port/pg_strong_random.c b/src/port/pg_strong_random.c
index ea6780dcc9f..c8d8a70d896 100644
--- a/src/port/pg_strong_random.c
+++ b/src/port/pg_strong_random.c
@@ -10,7 +10,7 @@
* therefore, even when built for backend, it cannot rely on backend
* infrastructure such as elog() or palloc().
*
- * Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pg_strong_random.c
diff --git a/src/port/pgcheckdir.c b/src/port/pgcheckdir.c
index 83330516107..807c21131d8 100644
--- a/src/port/pgcheckdir.c
+++ b/src/port/pgcheckdir.c
@@ -5,7 +5,7 @@
* A simple subroutine to check whether a directory exists and is empty or not.
* Useful in both initdb and the backend.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/pgsleep.c b/src/port/pgsleep.c
index dfe824fe462..4c31e503eb1 100644
--- a/src/port/pgsleep.c
+++ b/src/port/pgsleep.c
@@ -4,7 +4,7 @@
* Portable delay handling.
*
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* src/port/pgsleep.c
*
diff --git a/src/port/pgstrcasecmp.c b/src/port/pgstrcasecmp.c
index 17e93180381..080b3caf833 100644
--- a/src/port/pgstrcasecmp.c
+++ b/src/port/pgstrcasecmp.c
@@ -14,7 +14,7 @@
* NB: this code should match downcase_truncate_identifier() in scansup.c.
*
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* src/port/pgstrcasecmp.c
*
diff --git a/src/port/pgstrsignal.c b/src/port/pgstrsignal.c
index 4e6bb878dbc..50581407459 100644
--- a/src/port/pgstrsignal.c
+++ b/src/port/pgstrsignal.c
@@ -6,7 +6,7 @@
* On platforms compliant with modern POSIX, this just wraps strsignal(3).
* Elsewhere, we do the best we can.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/pqsignal.c b/src/port/pqsignal.c
index 26943845e21..fbdf9341c2f 100644
--- a/src/port/pqsignal.c
+++ b/src/port/pqsignal.c
@@ -4,7 +4,7 @@
* reliable BSD-style signal(2) routine stolen from RWW who stole it
* from Stevens...
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/pthread_barrier_wait.c b/src/port/pthread_barrier_wait.c
index 2387a2acb24..caa1b12aaf3 100644
--- a/src/port/pthread_barrier_wait.c
+++ b/src/port/pthread_barrier_wait.c
@@ -3,7 +3,7 @@
* pthread_barrier_wait.c
* Implementation of pthread_barrier_t support for platforms lacking it.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/pthread_barrier_wait.c
diff --git a/src/port/quotes.c b/src/port/quotes.c
index 3d3884036b8..99ed63d4fa1 100644
--- a/src/port/quotes.c
+++ b/src/port/quotes.c
@@ -3,7 +3,7 @@
* quotes.c
* string quoting and escaping functions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/snprintf.c b/src/port/snprintf.c
index d914547fae2..56c7036753c 100644
--- a/src/port/snprintf.c
+++ b/src/port/snprintf.c
@@ -2,7 +2,7 @@
* Copyright (c) 1983, 1995, 1996 Eric P. Allman
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
diff --git a/src/port/strerror.c b/src/port/strerror.c
index f0746517770..76af67ec2d0 100644
--- a/src/port/strerror.c
+++ b/src/port/strerror.c
@@ -3,7 +3,7 @@
* strerror.c
* Replacements for standard strerror() and strerror_r() functions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/strlcpy.c b/src/port/strlcpy.c
index d07b6536adb..a80e5d7280f 100644
--- a/src/port/strlcpy.c
+++ b/src/port/strlcpy.c
@@ -3,7 +3,7 @@
* strlcpy.c
* strncpy done right
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/strnlen.c b/src/port/strnlen.c
index 60c3b458c6b..13f87377d21 100644
--- a/src/port/strnlen.c
+++ b/src/port/strnlen.c
@@ -4,7 +4,7 @@
* Fallback implementation of strnlen().
*
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
diff --git a/src/port/strtof.c b/src/port/strtof.c
index e7258b3d6db..e0029bebf19 100644
--- a/src/port/strtof.c
+++ b/src/port/strtof.c
@@ -2,7 +2,7 @@
*
* strtof.c
*
- * Portions Copyright (c) 2019-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2019-2026, PostgreSQL Global Development Group
*
*
* IDENTIFICATION
diff --git a/src/port/system.c b/src/port/system.c
index a55946e0563..d72677a4843 100644
--- a/src/port/system.c
+++ b/src/port/system.c
@@ -29,7 +29,7 @@
* quote character on the command line, preserving any text after the last
* quote character.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* src/port/system.c
*
diff --git a/src/port/win32common.c b/src/port/win32common.c
index d43d5d5324f..0e1792d2531 100644
--- a/src/port/win32common.c
+++ b/src/port/win32common.c
@@ -3,7 +3,7 @@
* win32common.c
* Common routines shared among the win32*.c ports.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32dlopen.c b/src/port/win32dlopen.c
index cc348465969..d9def5e61a2 100644
--- a/src/port/win32dlopen.c
+++ b/src/port/win32dlopen.c
@@ -3,7 +3,7 @@
* win32dlopen.c
* dynamic loader for Windows
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32env.c b/src/port/win32env.c
index e1cee683dbf..1ef58debc9f 100644
--- a/src/port/win32env.c
+++ b/src/port/win32env.c
@@ -6,7 +6,7 @@
* These functions update both the process environment and caches in
* (potentially multiple) C run-time library (CRT) versions.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32error.c b/src/port/win32error.c
index 7ea99738bdb..62233b29356 100644
--- a/src/port/win32error.c
+++ b/src/port/win32error.c
@@ -3,7 +3,7 @@
* win32error.c
* Map win32 error codes to errno values
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32error.c
diff --git a/src/port/win32fdatasync.c b/src/port/win32fdatasync.c
index 66d75977013..dd46df1329a 100644
--- a/src/port/win32fdatasync.c
+++ b/src/port/win32fdatasync.c
@@ -4,7 +4,7 @@
* Win32 fdatasync() replacement
*
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* src/port/win32fdatasync.c
*
diff --git a/src/port/win32fseek.c b/src/port/win32fseek.c
index a75e488ce21..1209810b53d 100644
--- a/src/port/win32fseek.c
+++ b/src/port/win32fseek.c
@@ -3,7 +3,7 @@
* win32fseek.c
* Replacements for fseeko() and ftello().
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32fseek.c
diff --git a/src/port/win32gai_strerror.c b/src/port/win32gai_strerror.c
index d52e9a1ef37..fb774c3cea5 100644
--- a/src/port/win32gai_strerror.c
+++ b/src/port/win32gai_strerror.c
@@ -3,7 +3,7 @@
* win32gai_strerror.c
* Thread-safe gai_strerror() for Windows.
*
- * Portions Copyright (c) 2024-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2024-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32gai_strerror.c
diff --git a/src/port/win32getrusage.c b/src/port/win32getrusage.c
index 6a197c94376..fa2b79cd5ed 100644
--- a/src/port/win32getrusage.c
+++ b/src/port/win32getrusage.c
@@ -3,7 +3,7 @@
* win32getrusage.c
* get information about resource utilisation
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32link.c b/src/port/win32link.c
index ee4d6c96c99..e7c8623810f 100644
--- a/src/port/win32link.c
+++ b/src/port/win32link.c
@@ -2,7 +2,7 @@
*
* win32link.c
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32ntdll.c b/src/port/win32ntdll.c
index 1d3407f5a44..86e4719f333 100644
--- a/src/port/win32ntdll.c
+++ b/src/port/win32ntdll.c
@@ -3,7 +3,7 @@
* win32ntdll.c
* Dynamically loaded Windows NT functions.
*
- * Portions Copyright (c) 2021-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2021-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32pread.c b/src/port/win32pread.c
index 857a55e781d..ddb40ef0198 100644
--- a/src/port/win32pread.c
+++ b/src/port/win32pread.c
@@ -3,7 +3,7 @@
* win32pread.c
* Implementation of pread(2) for Windows.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32pread.c
diff --git a/src/port/win32pwrite.c b/src/port/win32pwrite.c
index 8085c00e38e..5eacb8419fb 100644
--- a/src/port/win32pwrite.c
+++ b/src/port/win32pwrite.c
@@ -3,7 +3,7 @@
* win32pwrite.c
* Implementation of pwrite(2) for Windows.
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32pwrite.c
diff --git a/src/port/win32security.c b/src/port/win32security.c
index b7608ab1706..46d2fc774b4 100644
--- a/src/port/win32security.c
+++ b/src/port/win32security.c
@@ -3,7 +3,7 @@
* win32security.c
* Microsoft Windows Win32 Security Support Functions
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32security.c
diff --git a/src/port/win32setlocale.c b/src/port/win32setlocale.c
index 6e084946132..0622ecd833c 100644
--- a/src/port/win32setlocale.c
+++ b/src/port/win32setlocale.c
@@ -3,7 +3,7 @@
* win32setlocale.c
* Wrapper to work around bugs in Windows setlocale() implementation
*
- * Copyright (c) 2011-2025, PostgreSQL Global Development Group
+ * Copyright (c) 2011-2026, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/port/win32setlocale.c
diff --git a/src/port/win32stat.c b/src/port/win32stat.c
index d9bad97b113..563696a5e1d 100644
--- a/src/port/win32stat.c
+++ b/src/port/win32stat.c
@@ -3,7 +3,7 @@
* win32stat.c
* Replacements for <sys/stat.h> functions using GetFileInformationByHandle
*
- * Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
diff --git a/src/port/win32ver.rc b/src/port/win32ver.rc
index e62020e72a1..68c0772146f 100644
--- a/src/port/win32ver.rc
+++ b/src/port/win32ver.rc
@@ -20,7 +20,7 @@ BEGIN
VALUE "FileDescription", FILEDESC
VALUE "FileVersion", PG_VERSION
VALUE "InternalName", _INTERNAL_NAME_
- VALUE "LegalCopyright", "Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
+ VALUE "LegalCopyright", "Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group. Portions Copyright (c) 1994, Regents of the University of California."
VALUE "OriginalFileName", _ORIGINAL_NAME_
VALUE "ProductName", "PostgreSQL"
VALUE "ProductVersion", PG_VERSION