diff options
author | Bruce Momjian <bruce@momjian.us> | 2024-01-03 20:49:05 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2024-01-03 20:49:05 -0500 |
commit | 29275b1d177096597675b5c6e7e7c9db2df8f4df (patch) | |
tree | b82e12375286dd75030a36b6d770bc0c2d385dbe /src/include/lib | |
parent | 793ecff7df80c5ffe598e431a6c2aca1d4c64eff (diff) | |
download | postgresql-29275b1d177096597675b5c6e7e7c9db2df8f4df.tar.gz postgresql-29275b1d177096597675b5c6e7e7c9db2df8f4df.zip |
Update copyright for 2024
Reported-by: Michael Paquier
Discussion: https://postgr.es/m/ZZKTDPxBBMt3C0J9@paquier.xyz
Backpatch-through: 12
Diffstat (limited to 'src/include/lib')
-rw-r--r-- | src/include/lib/binaryheap.h | 2 | ||||
-rw-r--r-- | src/include/lib/bipartite_match.h | 2 | ||||
-rw-r--r-- | src/include/lib/bloomfilter.h | 2 | ||||
-rw-r--r-- | src/include/lib/dshash.h | 2 | ||||
-rw-r--r-- | src/include/lib/hyperloglog.h | 2 | ||||
-rw-r--r-- | src/include/lib/ilist.h | 2 | ||||
-rw-r--r-- | src/include/lib/integerset.h | 2 | ||||
-rw-r--r-- | src/include/lib/knapsack.h | 2 | ||||
-rw-r--r-- | src/include/lib/pairingheap.h | 2 | ||||
-rw-r--r-- | src/include/lib/qunique.h | 2 | ||||
-rw-r--r-- | src/include/lib/rbtree.h | 2 | ||||
-rw-r--r-- | src/include/lib/simplehash.h | 2 | ||||
-rw-r--r-- | src/include/lib/sort_template.h | 2 | ||||
-rw-r--r-- | src/include/lib/stringinfo.h | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/src/include/lib/binaryheap.h b/src/include/lib/binaryheap.h index 9525dcaec44..19025c08ef1 100644 --- a/src/include/lib/binaryheap.h +++ b/src/include/lib/binaryheap.h @@ -3,7 +3,7 @@ * * A simple binary heap implementation * - * Portions Copyright (c) 2012-2023, PostgreSQL Global Development Group + * Portions Copyright (c) 2012-2024, PostgreSQL Global Development Group * * src/include/lib/binaryheap.h */ diff --git a/src/include/lib/bipartite_match.h b/src/include/lib/bipartite_match.h index 8fbbcaeb500..f34a7c151d2 100644 --- a/src/include/lib/bipartite_match.h +++ b/src/include/lib/bipartite_match.h @@ -1,7 +1,7 @@ /* * bipartite_match.h * - * Copyright (c) 2015-2023, PostgreSQL Global Development Group + * Copyright (c) 2015-2024, PostgreSQL Global Development Group * * src/include/lib/bipartite_match.h */ diff --git a/src/include/lib/bloomfilter.h b/src/include/lib/bloomfilter.h index 5a98c09ab8a..6ec7173843f 100644 --- a/src/include/lib/bloomfilter.h +++ b/src/include/lib/bloomfilter.h @@ -3,7 +3,7 @@ * bloomfilter.h * Space-efficient set membership testing * - * Copyright (c) 2018-2023, PostgreSQL Global Development Group + * Copyright (c) 2018-2024, PostgreSQL Global Development Group * * IDENTIFICATION * src/include/lib/bloomfilter.h diff --git a/src/include/lib/dshash.h b/src/include/lib/dshash.h index ece55521226..91f70ac2b5f 100644 --- a/src/include/lib/dshash.h +++ b/src/include/lib/dshash.h @@ -3,7 +3,7 @@ * dshash.h * Concurrent hash tables backed by dynamic shared memory areas. * - * 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 diff --git a/src/include/lib/hyperloglog.h b/src/include/lib/hyperloglog.h index f4150f0e85a..45f7de710bd 100644 --- a/src/include/lib/hyperloglog.h +++ b/src/include/lib/hyperloglog.h @@ -3,7 +3,7 @@ * * A simple HyperLogLog cardinality estimator implementation * - * 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. The copyright terms of Ohno's * original version (the MIT license) follow. diff --git a/src/include/lib/ilist.h b/src/include/lib/ilist.h index 095107a99c4..381f6158645 100644 --- a/src/include/lib/ilist.h +++ b/src/include/lib/ilist.h @@ -112,7 +112,7 @@ * } * * - * 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 diff --git a/src/include/lib/integerset.h b/src/include/lib/integerset.h index d7f711ee8b6..fb27466003c 100644 --- a/src/include/lib/integerset.h +++ b/src/include/lib/integerset.h @@ -2,7 +2,7 @@ * integerset.h * In-memory data structure to hold a large set of integers efficiently * - * Portions Copyright (c) 2012-2023, PostgreSQL Global Development Group + * Portions Copyright (c) 2012-2024, PostgreSQL Global Development Group * * src/include/lib/integerset.h */ diff --git a/src/include/lib/knapsack.h b/src/include/lib/knapsack.h index 04427ba7b5c..1a93841fdc4 100644 --- a/src/include/lib/knapsack.h +++ b/src/include/lib/knapsack.h @@ -1,7 +1,7 @@ /* * knapsack.h * - * Copyright (c) 2017-2023, PostgreSQL Global Development Group + * Copyright (c) 2017-2024, PostgreSQL Global Development Group * * src/include/lib/knapsack.h */ diff --git a/src/include/lib/pairingheap.h b/src/include/lib/pairingheap.h index 5691e10342d..7eade81535a 100644 --- a/src/include/lib/pairingheap.h +++ b/src/include/lib/pairingheap.h @@ -3,7 +3,7 @@ * * A Pairing Heap implementation * - * Portions Copyright (c) 2012-2023, PostgreSQL Global Development Group + * Portions Copyright (c) 2012-2024, PostgreSQL Global Development Group * * src/include/lib/pairingheap.h */ diff --git a/src/include/lib/qunique.h b/src/include/lib/qunique.h index 30b67c794f6..eda617fde5a 100644 --- a/src/include/lib/qunique.h +++ b/src/include/lib/qunique.h @@ -2,7 +2,7 @@ * * qunique.h * inline array unique functions - * Portions Copyright (c) 2019-2023, PostgreSQL Global Development Group + * Portions Copyright (c) 2019-2024, PostgreSQL Global Development Group * * IDENTIFICATION * src/include/lib/qunique.h diff --git a/src/include/lib/rbtree.h b/src/include/lib/rbtree.h index b339d6ea6fe..16de4c012c8 100644 --- a/src/include/lib/rbtree.h +++ b/src/include/lib/rbtree.h @@ -3,7 +3,7 @@ * rbtree.h * interface for PostgreSQL generic Red-Black binary tree package * - * Copyright (c) 2009-2023, PostgreSQL Global Development Group + * Copyright (c) 2009-2024, PostgreSQL Global Development Group * * IDENTIFICATION * src/include/lib/rbtree.h diff --git a/src/include/lib/simplehash.h b/src/include/lib/simplehash.h index 864cbbe3db4..37d8d17655b 100644 --- a/src/include/lib/simplehash.h +++ b/src/include/lib/simplehash.h @@ -87,7 +87,7 @@ * looking or is done - buckets following a deleted element are shifted * backwards, unless they're empty or already at their optimal position. * - * 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 * * src/include/lib/simplehash.h diff --git a/src/include/lib/sort_template.h b/src/include/lib/sort_template.h index 1edd05c7d36..a470fa11038 100644 --- a/src/include/lib/sort_template.h +++ b/src/include/lib/sort_template.h @@ -5,7 +5,7 @@ * A template for a sort algorithm that supports varying degrees of * specialization. * - * Copyright (c) 2021-2023, PostgreSQL Global Development Group + * Copyright (c) 2021-2024, PostgreSQL Global Development Group * Portions Copyright (c) 1992-1994, Regents of the University of California * * Usage notes: diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index 598ed093dc8..2cd636b01cf 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -8,7 +8,7 @@ * (null-terminated text) or arbitrary binary data. All storage is allocated * with palloc() (falling back to malloc in frontend code). * - * 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 * * src/include/lib/stringinfo.h |