1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Update copyright for 2024

Reported-by: Michael Paquier

Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz

Backpatch-through: 12
This commit is contained in:
Bruce Momjian
2024-01-03 20:49:05 -05:00
parent 793ecff7df
commit 29275b1d17
2500 changed files with 2517 additions and 2517 deletions

View File

@@ -7,7 +7,7 @@
*
* https://en.wikipedia.org/w/index.php?title=Hopcroft%E2%80%93Karp_algorithm&oldid=593898016
*
* Copyright (c) 2015-2023, PostgreSQL Global Development Group
* Copyright (c) 2015-2024, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/lib/bipartite_match.c

View File

@@ -24,7 +24,7 @@
* caller many authoritative lookups, such as expensive probes of a much larger
* on-disk structure.
*
* Copyright (c) 2018-2023, PostgreSQL Global Development Group
* Copyright (c) 2018-2024, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/lib/bloomfilter.c

View File

@@ -20,7 +20,7 @@
* Future versions may support iterators and incremental resizing; for now
* the implementation is minimalist.
*
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@@ -3,7 +3,7 @@
* hyperloglog.c
* HyperLogLog cardinality estimator
*
* Portions Copyright (c) 2014-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 2014-2024, PostgreSQL Global Development Group
*
* Based on Hideaki Ohno's C++ implementation. This is probably not ideally
* suited to estimating the cardinality of very large sets; in particular, we

View File

@@ -3,7 +3,7 @@
* ilist.c
* support for integrated/inline doubly- and singly- linked lists
*
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@@ -61,7 +61,7 @@
* (https://doi.org/10.1002/spe.948)
*
*
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@@ -15,7 +15,7 @@
* allows approximate solutions in polynomial time (the general case of the
* exact problem is NP-hard).
*
* Copyright (c) 2017-2023, PostgreSQL Global Development Group
* Copyright (c) 2017-2024, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/lib/knapsack.c

View File

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

View File

@@ -14,7 +14,7 @@
* The pairing heap: a new form of self-adjusting heap.
* Algorithmica 1, 1 (January 1986), pages 111-129. DOI: 10.1007/BF01840439
*
* Portions Copyright (c) 2012-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 2012-2024, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/lib/pairingheap.c

View File

@@ -17,7 +17,7 @@
* longest path from root to leaf is only about twice as long as the shortest,
* so lookups are guaranteed to run in O(lg n) time.
*
* Copyright (c) 2009-2023, PostgreSQL Global Development Group
* Copyright (c) 2009-2024, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/lib/rbtree.c