1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-26 01:22:12 +03:00

Update copyright for 2025

Backpatch-through: 13
This commit is contained in:
Bruce Momjian
2025-01-01 11:21:55 -05:00
parent 98b1efd6ef
commit 50e6eb731d
2594 changed files with 2613 additions and 2613 deletions

View File

@ -9,7 +9,7 @@
* Apart from walreceiver, the libpq-specific routines are now being used by
* logical replication workers and slot synchronization.
*
* Portions Copyright (c) 2010-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -1,4 +1,4 @@
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
# Copyright (c) 2022-2025, PostgreSQL Global Development Group
libpqwalreceiver_sources = files(
'libpqwalreceiver.c',

View File

@ -2,7 +2,7 @@
* applyparallelworker.c
* Support routines for applying xact by parallel apply worker
*
* Copyright (c) 2023-2024, PostgreSQL Global Development Group
* Copyright (c) 2023-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/applyparallelworker.c

View File

@ -2,7 +2,7 @@
* conflict.c
* Support routines for logging conflicts.
*
* Copyright (c) 2024, PostgreSQL Global Development Group
* Copyright (c) 2024-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/conflict.c

View File

@ -16,7 +16,7 @@
* contents of records in here except turning them into a more usable
* format.
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -2,7 +2,7 @@
* launcher.c
* PostgreSQL logical replication worker launcher process
*
* Copyright (c) 2016-2024, PostgreSQL Global Development Group
* Copyright (c) 2016-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/launcher.c

View File

@ -2,7 +2,7 @@
* logical.c
* PostgreSQL logical decoding coordination
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/logical.c

View File

@ -6,7 +6,7 @@
* logical replication slots via SQL.
*
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/logicalfuncs.c

View File

@ -1,4 +1,4 @@
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
# Copyright (c) 2022-2025, PostgreSQL Global Development Group
backend_sources += files(
'applyparallelworker.c',

View File

@ -3,7 +3,7 @@
* message.c
* Generic logical messages.
*
* Copyright (c) 2013-2024, PostgreSQL Global Development Group
* Copyright (c) 2013-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/message.c

View File

@ -3,7 +3,7 @@
* origin.c
* Logical replication progress tracking support.
*
* Copyright (c) 2013-2024, PostgreSQL Global Development Group
* Copyright (c) 2013-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/origin.c

View File

@ -3,7 +3,7 @@
* proto.c
* logical replication protocol functions
*
* Copyright (c) 2015-2024, PostgreSQL Global Development Group
* Copyright (c) 2015-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/proto.c

View File

@ -2,7 +2,7 @@
* relation.c
* PostgreSQL logical replication relation mapping cache
*
* Copyright (c) 2016-2024, PostgreSQL Global Development Group
* Copyright (c) 2016-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/relation.c

View File

@ -4,7 +4,7 @@
* PostgreSQL logical replay/reorder buffer management
*
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -3,7 +3,7 @@
* Functionality for synchronizing slots to a standby server from the
* primary server.
*
* Copyright (c) 2024, PostgreSQL Global Development Group
* Copyright (c) 2024-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/slotsync.c

View File

@ -112,7 +112,7 @@
* is a convenient point to initialize replication from, which is why we
* export a snapshot at that point, which *can* be used to read normal data.
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/snapbuild.c

View File

@ -2,7 +2,7 @@
* tablesync.c
* PostgreSQL logical replication: initial table data synchronization
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/tablesync.c

View File

@ -2,7 +2,7 @@
* worker.c
* PostgreSQL logical replication worker (apply)
*
* Copyright (c) 2016-2024, PostgreSQL Global Development Group
* Copyright (c) 2016-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/worker.c

View File

@ -1,4 +1,4 @@
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
# Copyright (c) 2022-2025, PostgreSQL Global Development Group
backend_sources += files(
'slot.c',

View File

@ -1,4 +1,4 @@
# Copyright (c) 2022-2024, PostgreSQL Global Development Group
# Copyright (c) 2022-2025, PostgreSQL Global Development Group
pgoutput_sources = files(
'pgoutput.c',

View File

@ -3,7 +3,7 @@
* pgoutput.c
* Logical Replication output plugin
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/pgoutput/pgoutput.c

View File

@ -3,7 +3,7 @@
*
* repl_gram.y - Parser for the replication commands
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* repl_scanner.l
* a lexical scanner for the replication commands
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* Replication slot management.
*
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -3,7 +3,7 @@
* slotfuncs.c
* Support functions for replication slots
*
* Copyright (c) 2012-2024, PostgreSQL Global Development Group
* Copyright (c) 2012-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/slotfuncs.c

View File

@ -63,7 +63,7 @@
* the standbys which are considered as synchronous at that moment
* will release waiters from the queue.
*
* Portions Copyright (c) 2010-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/syncrep.c

View File

@ -3,7 +3,7 @@
*
* syncrep_gram.y - Parser for synchronous_standby_names
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* syncrep_scanner.l
* a lexical scanner for synchronous_standby_names
*
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -39,7 +39,7 @@
* specific parts are in the libpqwalreceiver module. It's loaded
* dynamically to avoid linking the server with libpq.
*
* Portions Copyright (c) 2010-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -6,7 +6,7 @@
* with the walreceiver process. Functions implementing walreceiver itself
* are in walreceiver.c.
*
* Portions Copyright (c) 2010-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -37,7 +37,7 @@
* record, wait for it to be replicated to the standby, and then exit.
*
*
* Portions Copyright (c) 2010-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 2010-2025, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/walsender.c