Update copyright years in some recently added files

pull/20/head
Peter Eisentraut 9 years ago
parent 65df150a18
commit 3d9e73ea5f
  1. 3
      src/backend/catalog/pg_publication.c
  2. 3
      src/backend/catalog/pg_subscription.c
  3. 3
      src/backend/commands/publicationcmds.c
  4. 3
      src/backend/commands/subscriptioncmds.c
  5. 2
      src/backend/executor/execReplication.c
  6. 2
      src/backend/replication/logical/launcher.c
  7. 2
      src/backend/replication/logical/relation.c
  8. 2
      src/backend/replication/logical/worker.c
  9. 2
      src/include/catalog/pg_publication.h
  10. 2
      src/include/catalog/pg_publication_rel.h
  11. 2
      src/include/catalog/pg_subscription.h
  12. 2
      src/include/commands/publicationcmds.h
  13. 2
      src/include/commands/subscriptioncmds.h
  14. 2
      src/include/replication/logicallauncher.h
  15. 2
      src/include/replication/logicalrelation.h
  16. 2
      src/include/replication/logicalworker.h
  17. 2
      src/include/replication/worker_internal.h
  18. 2
      src/test/subscription/Makefile

@ -3,7 +3,8 @@
* pg_publication.c
* publication C API manipulation
*
* Copyright (c) 2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* pg_publication.c

@ -3,7 +3,8 @@
* pg_subscription.c
* replication subscriptions
*
* Copyright (c) 2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* src/backend/catalog/pg_subscription.c

@ -3,7 +3,8 @@
* publicationcmds.c
* publication manipulation
*
* Copyright (c) 2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* publicationcmds.c

@ -3,7 +3,8 @@
* subscriptioncmds.c
* subscription catalog manipulation functions
*
* Copyright (c) 2015, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* subscriptioncmds.c

@ -3,7 +3,7 @@
* execReplication.c
* miscellaneous executor routines for logical replication
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION

@ -2,7 +2,7 @@
* launcher.c
* PostgreSQL logical replication worker launcher process
*
* Copyright (c) 2012-2016, PostgreSQL Global Development Group
* Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/launcher.c

@ -2,7 +2,7 @@
* relation.c
* PostgreSQL logical replication
*
* Copyright (c) 2012-2016, PostgreSQL Global Development Group
* Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/relation.c

@ -2,7 +2,7 @@
* worker.c
* PostgreSQL logical replication worker (apply)
*
* Copyright (c) 2012-2016, PostgreSQL Global Development Group
* Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/worker.c

@ -3,7 +3,7 @@
* pg_publication.h
* definition of the relation sets relation (pg_publication)
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/catalog/pg_publication.h

@ -3,7 +3,7 @@
* pg_publication_rel.h
* definition of the publication to relation map (pg_publication_rel)
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/catalog/pg_publication_rel.h

@ -3,7 +3,7 @@
* pg_subscription.h
* Definition of the subscription catalog (pg_subscription).
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* -------------------------------------------------------------------------

@ -4,7 +4,7 @@
* prototypes for publicationcmds.c.
*
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/commands/publicationcmds.h

@ -4,7 +4,7 @@
* prototypes for subscriptioncmds.c.
*
*
* Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/commands/subscriptioncmds.h

@ -3,7 +3,7 @@
* logicallauncher.h
* Exports for logical replication launcher.
*
* Portions Copyright (c) 2010-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* src/include/replication/logicallauncher.h
*

@ -3,7 +3,7 @@
* logicalrelation.h
* Relation definitions for logical replication relation mapping.
*
* Portions Copyright (c) 2010-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* src/include/replication/logicalrelation.h
*

@ -3,7 +3,7 @@
* logicalworker.h
* Exports for logical replication workers.
*
* Portions Copyright (c) 2010-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* src/include/replication/logicalworker.h
*

@ -3,7 +3,7 @@
* worker_internal.h
* Internal headers shared by logical replication workers.
*
* Portions Copyright (c) 2010-2016, PostgreSQL Global Development Group
* Portions Copyright (c) 2016-2017, PostgreSQL Global Development Group
*
* src/include/replication/worker_internal.h
*

@ -2,7 +2,7 @@
#
# Makefile for src/test/subscription
#
# Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# src/test/subscription/Makefile

Loading…
Cancel
Save