summaryrefslogtreecommitdiff
path: root/contrib/bloom
diff options
context:
space:
mode:
authorBruce Momjian2023-01-02 20:00:37 +0000
committerBruce Momjian2023-01-02 20:00:37 +0000
commitc8e1ba736b2b9e8c98d37a5b77c4ed31baf94147 (patch)
treebc2e271d4b902b97d9dee7870b138d5750aa86db /contrib/bloom
parent325bc54eed4ea0836a0bb715bb18342f0c1c668a (diff)
Update copyright for 2023
Backpatch-through: 11
Diffstat (limited to 'contrib/bloom')
-rw-r--r--contrib/bloom/blcost.c2
-rw-r--r--contrib/bloom/blinsert.c2
-rw-r--r--contrib/bloom/bloom.h2
-rw-r--r--contrib/bloom/blscan.c2
-rw-r--r--contrib/bloom/blutils.c2
-rw-r--r--contrib/bloom/blvacuum.c2
-rw-r--r--contrib/bloom/blvalidate.c2
-rw-r--r--contrib/bloom/meson.build2
-rw-r--r--contrib/bloom/t/001_wal.pl2
9 files changed, 9 insertions, 9 deletions
diff --git a/contrib/bloom/blcost.c b/contrib/bloom/blcost.c
index d4b1c76303..288e8edd02 100644
--- a/contrib/bloom/blcost.c
+++ b/contrib/bloom/blcost.c
@@ -3,7 +3,7 @@
* blcost.c
* Cost estimate function for bloom indexes.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/blcost.c
diff --git a/contrib/bloom/blinsert.c b/contrib/bloom/blinsert.c
index dd26d6ac29..f81442efb3 100644
--- a/contrib/bloom/blinsert.c
+++ b/contrib/bloom/blinsert.c
@@ -3,7 +3,7 @@
* blinsert.c
* Bloom index build and insert functions.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/blinsert.c
diff --git a/contrib/bloom/bloom.h b/contrib/bloom/bloom.h
index 6d58e22813..efdf9415d1 100644
--- a/contrib/bloom/bloom.h
+++ b/contrib/bloom/bloom.h
@@ -3,7 +3,7 @@
* bloom.h
* Header for bloom index.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/bloom.h
diff --git a/contrib/bloom/blscan.c b/contrib/bloom/blscan.c
index 4c923488bd..6cc7d07164 100644
--- a/contrib/bloom/blscan.c
+++ b/contrib/bloom/blscan.c
@@ -3,7 +3,7 @@
* blscan.c
* Bloom index scan functions.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/blscan.c
diff --git a/contrib/bloom/blutils.c b/contrib/bloom/blutils.c
index a434cf93ef..a6d9f09f31 100644
--- a/contrib/bloom/blutils.c
+++ b/contrib/bloom/blutils.c
@@ -3,7 +3,7 @@
* blutils.c
* Bloom index utilities.
*
- * Portions Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Portions Copyright (c) 2016-2023, PostgreSQL Global Development Group
* Portions Copyright (c) 1990-1993, Regents of the University of California
*
* IDENTIFICATION
diff --git a/contrib/bloom/blvacuum.c b/contrib/bloom/blvacuum.c
index 91fae5b0c0..2340d49e00 100644
--- a/contrib/bloom/blvacuum.c
+++ b/contrib/bloom/blvacuum.c
@@ -3,7 +3,7 @@
* blvacuum.c
* Bloom VACUUM functions.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/blvacuum.c
diff --git a/contrib/bloom/blvalidate.c b/contrib/bloom/blvalidate.c
index 333a35d377..74bb3f894e 100644
--- a/contrib/bloom/blvalidate.c
+++ b/contrib/bloom/blvalidate.c
@@ -3,7 +3,7 @@
* blvalidate.c
* Opclass validator for bloom.
*
- * Copyright (c) 2016-2022, PostgreSQL Global Development Group
+ * Copyright (c) 2016-2023, PostgreSQL Global Development Group
*
* IDENTIFICATION
* contrib/bloom/blvalidate.c
diff --git a/contrib/bloom/meson.build b/contrib/bloom/meson.build
index 9f0ffc3b8c..5d481a58c7 100644
--- a/contrib/bloom/meson.build
+++ b/contrib/bloom/meson.build
@@ -1,4 +1,4 @@
-# Copyright (c) 2022, PostgreSQL Global Development Group
+# Copyright (c) 2022-2023, PostgreSQL Global Development Group
bloom_sources = files(
'blcost.c',
diff --git a/contrib/bloom/t/001_wal.pl b/contrib/bloom/t/001_wal.pl
index 9416a64dbd..c1614e9be8 100644
--- a/contrib/bloom/t/001_wal.pl
+++ b/contrib/bloom/t/001_wal.pl
@@ -1,5 +1,5 @@
-# Copyright (c) 2021-2022, PostgreSQL Global Development Group
+# Copyright (c) 2021-2023, PostgreSQL Global Development Group
# Test generic xlog record work for bloom index replication.
use strict;