Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
3d9e73ea
Commit
3d9e73ea
authored
Jan 25, 2017
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update copyright years in some recently added files
parent
65df150a
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
23 additions
and
19 deletions
+23
-19
src/backend/catalog/pg_publication.c
src/backend/catalog/pg_publication.c
+2
-1
src/backend/catalog/pg_subscription.c
src/backend/catalog/pg_subscription.c
+2
-1
src/backend/commands/publicationcmds.c
src/backend/commands/publicationcmds.c
+2
-1
src/backend/commands/subscriptioncmds.c
src/backend/commands/subscriptioncmds.c
+2
-1
src/backend/executor/execReplication.c
src/backend/executor/execReplication.c
+1
-1
src/backend/replication/logical/launcher.c
src/backend/replication/logical/launcher.c
+1
-1
src/backend/replication/logical/relation.c
src/backend/replication/logical/relation.c
+1
-1
src/backend/replication/logical/worker.c
src/backend/replication/logical/worker.c
+1
-1
src/include/catalog/pg_publication.h
src/include/catalog/pg_publication.h
+2
-2
src/include/catalog/pg_publication_rel.h
src/include/catalog/pg_publication_rel.h
+1
-1
src/include/catalog/pg_subscription.h
src/include/catalog/pg_subscription.h
+1
-1
src/include/commands/publicationcmds.h
src/include/commands/publicationcmds.h
+1
-1
src/include/commands/subscriptioncmds.h
src/include/commands/subscriptioncmds.h
+1
-1
src/include/replication/logicallauncher.h
src/include/replication/logicallauncher.h
+1
-1
src/include/replication/logicalrelation.h
src/include/replication/logicalrelation.h
+1
-1
src/include/replication/logicalworker.h
src/include/replication/logicalworker.h
+1
-1
src/include/replication/worker_internal.h
src/include/replication/worker_internal.h
+1
-1
src/test/subscription/Makefile
src/test/subscription/Makefile
+1
-1
No files found.
src/backend/catalog/pg_publication.c
View file @
3d9e73ea
...
...
@@ -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
...
...
src/backend/catalog/pg_subscription.c
View file @
3d9e73ea
...
...
@@ -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
...
...
src/backend/commands/publicationcmds.c
View file @
3d9e73ea
...
...
@@ -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
...
...
src/backend/commands/subscriptioncmds.c
View file @
3d9e73ea
...
...
@@ -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
...
...
src/backend/executor/execReplication.c
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* execReplication.c
* miscellaneous executor routines for logical replication
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
...
...
src/backend/replication/logical/launcher.c
View file @
3d9e73ea
...
...
@@ -2,7 +2,7 @@
* launcher.c
* PostgreSQL logical replication worker launcher process
*
* Copyright (c) 201
2-2016
, PostgreSQL Global Development Group
* Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/launcher.c
...
...
src/backend/replication/logical/relation.c
View file @
3d9e73ea
...
...
@@ -2,7 +2,7 @@
* relation.c
* PostgreSQL logical replication
*
* Copyright (c) 201
2-2016
, PostgreSQL Global Development Group
* Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/relation.c
...
...
src/backend/replication/logical/worker.c
View file @
3d9e73ea
...
...
@@ -2,7 +2,7 @@
* worker.c
* PostgreSQL logical replication worker (apply)
*
* Copyright (c) 201
2-2016
, PostgreSQL Global Development Group
* Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* IDENTIFICATION
* src/backend/replication/logical/worker.c
...
...
src/include/catalog/pg_publication.h
View file @
3d9e73ea
...
...
@@ -2,8 +2,8 @@
*
* pg_publication.h
* definition of the relation sets relation (pg_publication)
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
*
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/catalog/pg_publication.h
...
...
src/include/catalog/pg_publication_rel.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* pg_publication_rel.h
* definition of the publication to relation map (pg_publication_rel)
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/catalog/pg_publication_rel.h
...
...
src/include/catalog/pg_subscription.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* pg_subscription.h
* Definition of the subscription catalog (pg_subscription).
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* -------------------------------------------------------------------------
...
...
src/include/commands/publicationcmds.h
View file @
3d9e73ea
...
...
@@ -4,7 +4,7 @@
* prototypes for publicationcmds.c.
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/commands/publicationcmds.h
...
...
src/include/commands/subscriptioncmds.h
View file @
3d9e73ea
...
...
@@ -4,7 +4,7 @@
* prototypes for subscriptioncmds.c.
*
*
* Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* src/include/commands/subscriptioncmds.h
...
...
src/include/replication/logicallauncher.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* logicallauncher.h
* Exports for logical replication launcher.
*
* Portions Copyright (c) 201
0-2016
, PostgreSQL Global Development Group
* Portions Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* src/include/replication/logicallauncher.h
*
...
...
src/include/replication/logicalrelation.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* logicalrelation.h
* Relation definitions for logical replication relation mapping.
*
* Portions Copyright (c) 201
0-2016
, PostgreSQL Global Development Group
* Portions Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* src/include/replication/logicalrelation.h
*
...
...
src/include/replication/logicalworker.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* logicalworker.h
* Exports for logical replication workers.
*
* Portions Copyright (c) 201
0-2016
, PostgreSQL Global Development Group
* Portions Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* src/include/replication/logicalworker.h
*
...
...
src/include/replication/worker_internal.h
View file @
3d9e73ea
...
...
@@ -3,7 +3,7 @@
* worker_internal.h
* Internal headers shared by logical replication workers.
*
* Portions Copyright (c) 201
0-2016
, PostgreSQL Global Development Group
* Portions Copyright (c) 201
6-2017
, PostgreSQL Global Development Group
*
* src/include/replication/worker_internal.h
*
...
...
src/test/subscription/Makefile
View file @
3d9e73ea
...
...
@@ -2,7 +2,7 @@
#
# Makefile for src/test/subscription
#
# Portions Copyright (c) 1996-201
6
, PostgreSQL Global Development Group
# Portions Copyright (c) 1996-201
7
, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
# src/test/subscription/Makefile
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment