Adjust locations which have an incorrect copyright year
authorDavid Rowley <drowley@postgresql.org>
Fri, 4 Jun 2021 00:19:50 +0000 (12:19 +1200)
committerDavid Rowley <drowley@postgresql.org>
Fri, 4 Jun 2021 00:19:50 +0000 (12:19 +1200)
A few patches committed after ca3b37487 mistakenly forgot to make the
copyright year 2021.  Fix these.

Discussion: https://postgr.es/m/CAApHDvqyLmd9P2oBQYJ=DbrV8QwyPRdmXtCTFYPE08h+ip0UJw@mail.gmail.com

15 files changed:
contrib/pageinspect/gistfuncs.c
src/backend/access/brin/brin_bloom.c
src/backend/access/brin/brin_minmax_multi.c
src/backend/rewrite/rewriteSearchCycle.c
src/backend/utils/adt/jsonbsubs.c
src/common/hex.c
src/common/hmac.c
src/common/hmac_openssl.c
src/common/sha1.c
src/common/sha1_int.h
src/include/common/hex.h
src/include/common/hmac.h
src/include/common/sha1.h
src/include/port/pg_iovec.h
src/include/rewrite/rewriteSearchCycle.h

index eb9f6303df63f43f7d9db8349414f18521f78cad..7c9b9be3efad07b2a266c76f29e36a566f80e3b5 100644 (file)
@@ -2,7 +2,7 @@
  * gistfuncs.c
  *     Functions to investigate the content of GiST indexes
  *
- * Copyright (c) 2014-2020, PostgreSQL Global Development Group
+ * Copyright (c) 2014-2021, PostgreSQL Global Development Group
  *
  * IDENTIFICATION
  *     contrib/pageinspect/gistfuncs.c
index 99b2543f767e0e67b1fa50f6584dac2b37c5de4f..2c8a20aaca6488c6a767a51af4e8d2b0fe35309d 100644 (file)
@@ -2,7 +2,7 @@
  * brin_bloom.c
  *     Implementation of Bloom opclass for BRIN
  *
- * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
index c62a3c8ba8c677c6f54f3c55bef02fa025048c96..96499046d7796d3b0c14e4551b07cf80ba44caa2 100644 (file)
@@ -2,7 +2,7 @@
  * brin_minmax_multi.c
  *     Implementation of Multi Min/Max opclass for BRIN
  *
- * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
index 2d0ac378a81e948377604f1aa1c2d2f5e3b002d7..599fe8e73529532e1b317a9220623ba00565afd0 100644 (file)
@@ -3,7 +3,7 @@
  * rewriteSearchCycle.c
  *     Support for rewriting SEARCH and CYCLE clauses.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index 5868aad0578f0bb016a9d49e40da87145ca40d1d..47a89457dbee158c36c9f9d405f636c9f1407b6f 100644 (file)
@@ -3,7 +3,7 @@
  * jsonbsubs.c
  *   Subscripting support functions for jsonb.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *
index e4878ba253dc729bad8cb330f43c75f7f7bdee38..3b1bc8fa75303792b6437cf40c2a197c4cf71701 100644 (file)
@@ -3,7 +3,7 @@
  * hex.c
  *   Encoding and decoding routines for hex.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index f1b8555143ab3edc977359c0954cd38e6fbc4909..1089db67443073e85eb29098f2ab76313d1bd34a 100644 (file)
@@ -5,7 +5,7 @@
  *
  * Fallback implementation of HMAC, as specified in RFC 2104.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index 5df06839e015f6a873b0d57cef8e52429ec8886a..1acf59476eb3fb6bfd9b866075a19dab331351b0 100644 (file)
@@ -5,7 +5,7 @@
  *
  * This should only be used if code is compiled with OpenSSL support.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index f8ed4d6808699184f1ebbb98bc3cbb1efca9fad9..b39173b3a3780f14253551830d7bd5880a350b38 100644 (file)
@@ -5,7 +5,7 @@
  *
  * Fallback implementation of SHA1, as specified in RFC 3174.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index 7f458a61274037e32bf02be17288c778fab20807..1929a2a655532155798ea812daf0032b8380d031 100644 (file)
@@ -3,7 +3,7 @@
  * sha1_int.h
  *   Internal headers for fallback implementation of SHA1
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index 3c3c956bb66cd60c534c7da04325b60878f17aee..150771a14d74940142d9830de658d2376bb4053a 100644 (file)
@@ -3,7 +3,7 @@
  * hex.h
  *   Encoding and decoding routines for hex strings.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index ea0343a9da7b4496aa76dbc145ec78de5e95fc30..dd012e6690cd1c6c00a2ceef02198c1fc25eb98a 100644 (file)
@@ -3,7 +3,7 @@
  * hmac.h
  *   Generic headers for HMAC
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * IDENTIFICATION
index b1ee36f8eaf1095d8a85512379236c48d1153789..a475fadb8cc63d78b14a13fbb247de20307607ed 100644 (file)
@@ -3,7 +3,7 @@
  * sha1.h
  *   Constants related to SHA1.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/common/sha1.h
index 365d605a9b3dc93b8492ef38b69480b7dda4bc68..05d59e99fb639bab68a1fd87be807072509f2551 100644 (file)
@@ -3,7 +3,7 @@
  * pg_iovec.h
  *   Header for vectored I/O functions, to use in place of <sys/uio.h>.
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/port/pg_iovec.h
index 257fb7cdab744c47f3fd789df2686c55467e0f89..6be9541d4863bcc2b96d057d085c502629ab7e71 100644 (file)
@@ -4,7 +4,7 @@
  *     Support for rewriting SEARCH and CYCLE clauses.
  *
  *
- * Portions Copyright (c) 1996-2020, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  * src/include/rewrite/rewriteSearchCycle.h