diff options
author | Bruce Momjian <bruce@momjian.us> | 2022-01-07 19:04:57 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2022-01-07 19:04:57 -0500 |
commit | 27b77ecf9f4d5be211900eda54d8155ada50d696 (patch) | |
tree | 63b0c8a1c05e6fa3c0314212f64bc1cc6d26d6a6 /src/fe_utils | |
parent | c3879a7b4c87344d804483234a7278a68e8248d9 (diff) | |
download | postgresql-27b77ecf9f4d5be211900eda54d8155ada50d696.tar.gz postgresql-27b77ecf9f4d5be211900eda54d8155ada50d696.zip |
Update copyright for 2022
Backpatch-through: 10
Diffstat (limited to 'src/fe_utils')
-rw-r--r-- | src/fe_utils/Makefile | 2 | ||||
-rw-r--r-- | src/fe_utils/archive.c | 2 | ||||
-rw-r--r-- | src/fe_utils/cancel.c | 2 | ||||
-rw-r--r-- | src/fe_utils/conditional.c | 2 | ||||
-rw-r--r-- | src/fe_utils/connect_utils.c | 2 | ||||
-rw-r--r-- | src/fe_utils/mbprint.c | 2 | ||||
-rw-r--r-- | src/fe_utils/option_utils.c | 2 | ||||
-rw-r--r-- | src/fe_utils/parallel_slot.c | 2 | ||||
-rw-r--r-- | src/fe_utils/print.c | 2 | ||||
-rw-r--r-- | src/fe_utils/psqlscan.l | 2 | ||||
-rw-r--r-- | src/fe_utils/query_utils.c | 2 | ||||
-rw-r--r-- | src/fe_utils/recovery_gen.c | 2 | ||||
-rw-r--r-- | src/fe_utils/simple_list.c | 2 | ||||
-rw-r--r-- | src/fe_utils/string_utils.c | 2 |
14 files changed, 14 insertions, 14 deletions
diff --git a/src/fe_utils/Makefile b/src/fe_utils/Makefile index 456c441a334..44bc7a1215d 100644 --- a/src/fe_utils/Makefile +++ b/src/fe_utils/Makefile @@ -5,7 +5,7 @@ # This makefile generates a static library, libpgfeutils.a, # for use by client applications # -# Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group +# Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # # IDENTIFICATION diff --git a/src/fe_utils/archive.c b/src/fe_utils/archive.c index 8baef5f078c..361c1c25ead 100644 --- a/src/fe_utils/archive.c +++ b/src/fe_utils/archive.c @@ -3,7 +3,7 @@ * archive.c * Routines to access WAL archives from frontend * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * diff --git a/src/fe_utils/cancel.c b/src/fe_utils/cancel.c index 14f939105ac..49bdc6aca19 100644 --- a/src/fe_utils/cancel.c +++ b/src/fe_utils/cancel.c @@ -6,7 +6,7 @@ * handler for SIGINT. * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe-utils/cancel.c diff --git a/src/fe_utils/conditional.c b/src/fe_utils/conditional.c index a562e28846b..0bf877e895b 100644 --- a/src/fe_utils/conditional.c +++ b/src/fe_utils/conditional.c @@ -1,7 +1,7 @@ /*------------------------------------------------------------------------- * A stack of automaton states to handle nested conditionals. * - * Copyright (c) 2000-2021, PostgreSQL Global Development Group + * Copyright (c) 2000-2022, PostgreSQL Global Development Group * * src/fe_utils/conditional.c * diff --git a/src/fe_utils/connect_utils.c b/src/fe_utils/connect_utils.c index 96bb798316a..a30c66f13aa 100644 --- a/src/fe_utils/connect_utils.c +++ b/src/fe_utils/connect_utils.c @@ -2,7 +2,7 @@ * * Facilities for frontend code to connect to and disconnect from databases. * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/connect_utils.c diff --git a/src/fe_utils/mbprint.c b/src/fe_utils/mbprint.c index fe3faba46f2..067f28119b3 100644 --- a/src/fe_utils/mbprint.c +++ b/src/fe_utils/mbprint.c @@ -3,7 +3,7 @@ * Multibyte character printing support for frontend code * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/mbprint.c diff --git a/src/fe_utils/option_utils.c b/src/fe_utils/option_utils.c index bcfe7365fd3..abea88154ca 100644 --- a/src/fe_utils/option_utils.c +++ b/src/fe_utils/option_utils.c @@ -2,7 +2,7 @@ * * Command line option processing facilities for frontend code * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/option_utils.c diff --git a/src/fe_utils/parallel_slot.c b/src/fe_utils/parallel_slot.c index 69581157c29..5896a8a6ca0 100644 --- a/src/fe_utils/parallel_slot.c +++ b/src/fe_utils/parallel_slot.c @@ -4,7 +4,7 @@ * Parallel support for front-end parallel database connections * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/parallel_slot.c diff --git a/src/fe_utils/print.c b/src/fe_utils/print.c index cc245a9c4bf..2c8e58ebf5c 100644 --- a/src/fe_utils/print.c +++ b/src/fe_utils/print.c @@ -8,7 +8,7 @@ * pager open/close functions, all that stuff came with it. * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/print.c diff --git a/src/fe_utils/psqlscan.l b/src/fe_utils/psqlscan.l index db8a8dfaf25..941ed065532 100644 --- a/src/fe_utils/psqlscan.l +++ b/src/fe_utils/psqlscan.l @@ -24,7 +24,7 @@ * See psqlscan_int.h for additional commentary. * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION diff --git a/src/fe_utils/query_utils.c b/src/fe_utils/query_utils.c index d5ffe56fd68..0b31b33f17b 100644 --- a/src/fe_utils/query_utils.c +++ b/src/fe_utils/query_utils.c @@ -2,7 +2,7 @@ * * Facilities for frontend code to query a databases. * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/query_utils.c diff --git a/src/fe_utils/recovery_gen.c b/src/fe_utils/recovery_gen.c index 2643ecd6f3f..9407e76bba3 100644 --- a/src/fe_utils/recovery_gen.c +++ b/src/fe_utils/recovery_gen.c @@ -3,7 +3,7 @@ * recovery_gen.c * Generator for recovery configuration * - * Portions Copyright (c) 2011-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 2011-2022, PostgreSQL Global Development Group * *------------------------------------------------------------------------- */ diff --git a/src/fe_utils/simple_list.c b/src/fe_utils/simple_list.c index 5c0ca004386..ae6c69464cd 100644 --- a/src/fe_utils/simple_list.c +++ b/src/fe_utils/simple_list.c @@ -7,7 +7,7 @@ * it's all we need in, eg, pg_dump. * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/simple_list.c diff --git a/src/fe_utils/string_utils.c b/src/fe_utils/string_utils.c index 81e623602ec..bca50ec6dec 100644 --- a/src/fe_utils/string_utils.c +++ b/src/fe_utils/string_utils.c @@ -6,7 +6,7 @@ * and interpreting backend output. * * - * Portions Copyright (c) 1996-2021, PostgreSQL Global Development Group + * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/fe_utils/string_utils.c |