1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Update copyright for 2019

Backpatch-through: certain files through 9.4
This commit is contained in:
Bruce Momjian
2019-01-02 12:44:25 -05:00
parent b6f3649bba
commit 97c39498e5
1692 changed files with 1703 additions and 1703 deletions

View File

@ -3,7 +3,7 @@
* base64.c
* Encoding and decoding routines for base64 without whitespace.
*
* Copyright (c) 2001-2018, PostgreSQL Global Development Group
* Copyright (c) 2001-2019, PostgreSQL Global Development Group
*
*
* IDENTIFICATION

View File

@ -4,7 +4,7 @@
* Common code for pg_config output
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* Common code for control data file output.
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* Functions for finding and validating executable files
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -3,7 +3,7 @@
* fe_memutils.c
* memory management support for frontend code
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -3,7 +3,7 @@
* File and directory permission routines
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/common/file_perm.c

View File

@ -5,7 +5,7 @@
* Assorted utility functions to work on files.
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/common/file_utils.c

View File

@ -3,7 +3,7 @@
* ip.c
* IPv6-aware network access.
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
* lexical token lookup for key words in PostgreSQL
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -2,7 +2,7 @@
* link-canary.c
* Detect whether src/common functions came from frontend or backend.
*
* Copyright (c) 2018, PostgreSQL Global Development Group
* Copyright (c) 2018-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/link-canary.c

View File

@ -10,7 +10,7 @@
*
* Sverre H. Huseby <sverrehu@online.no>
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -166,7 +166,7 @@
*
* Jan Wieck
*
* Copyright (c) 1999-2018, PostgreSQL Global Development Group
* Copyright (c) 1999-2019, PostgreSQL Global Development Group
*
* src/common/pg_lzcompress.c
* ----------

View File

@ -3,7 +3,7 @@
* pgfnames.c
* directory handling functions
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -4,7 +4,7 @@
* sprintf into an allocated-on-demand buffer
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -4,7 +4,7 @@
*
* This module also contains some logic associated with fork names.
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -4,7 +4,7 @@
* helper routine to ensure restricted token on Windows
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -2,7 +2,7 @@
*
* rmtree.c
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -12,7 +12,7 @@
* http://www.ietf.org/rfc/rfc4013.txt
*
*
* Portions Copyright (c) 2017-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2017-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/saslprep.c

View File

@ -6,7 +6,7 @@
* backend, for implement the Salted Challenge Response Authentication
* Mechanism (SCRAM), per IETF's RFC 5802.
*
* Portions Copyright (c) 2017-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2017-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/scram-common.c

View File

@ -6,7 +6,7 @@
* This is the set of in-core functions used when there are no other
* alternative options like OpenSSL.
*
* Portions Copyright (c) 2016-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/sha2.c

View File

@ -6,7 +6,7 @@
*
* This should only be used if code is compiled with OpenSSL support.
*
* Portions Copyright (c) 2016-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/sha2_openssl.c

View File

@ -4,7 +4,7 @@
* string handling helpers
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*

View File

@ -5,7 +5,7 @@
#
# NormalizationTest.txt is part of the Unicode Character Database.
#
# Copyright (c) 2000-2018, PostgreSQL Global Development Group
# Copyright (c) 2000-2019, PostgreSQL Global Development Group
use strict;
use warnings;
@ -30,7 +30,7 @@ print $OUTPUT <<HEADER;
* norm_test_table.h
* Test strings for Unicode normalization.
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/common/unicode/norm_test_table.h

View File

@ -5,7 +5,7 @@
# Input: UnicodeData.txt and CompositionExclusions.txt
# Output: unicode_norm_table.h
#
# Copyright (c) 2000-2018, PostgreSQL Global Development Group
# Copyright (c) 2000-2019, PostgreSQL Global Development Group
use strict;
use warnings;
@ -74,7 +74,7 @@ print $OUTPUT <<HEADER;
* unicode_norm_table.h
* Composition table used for Unicode normalization
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/common/unicode_norm_table.h

View File

@ -2,7 +2,7 @@
* norm_test.c
* Program to test Unicode normalization functions.
*
* Portions Copyright (c) 2017-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2017-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/unicode/norm_test.c

View File

@ -5,7 +5,7 @@
* This implements Unicode normalization, per the documentation at
* http://www.unicode.org/reports/tr15/.
*
* Portions Copyright (c) 2017-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 2017-2019, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/common/unicode_norm.c

View File

@ -3,7 +3,7 @@
* username.c
* get user name
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

View File

@ -4,7 +4,7 @@
* Convert a wait/waitpid(2) result code to a human-readable string
*
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*