Update copyright year to 2015
authorHeikki Linnakangas <[email protected]>
Fri, 9 Jan 2015 08:52:22 +0000 (10:52 +0200)
committerHeikki Linnakangas <[email protected]>
Fri, 16 Jan 2015 11:37:07 +0000 (13:37 +0200)
15 files changed:
contrib/pg_rewind/Makefile
contrib/pg_rewind/copy_fetch.c
contrib/pg_rewind/datapagemap.c
contrib/pg_rewind/datapagemap.h
contrib/pg_rewind/fetch.c
contrib/pg_rewind/fetch.h
contrib/pg_rewind/filemap.c
contrib/pg_rewind/filemap.h
contrib/pg_rewind/libpq_fetch.c
contrib/pg_rewind/parsexlog.c
contrib/pg_rewind/pg_rewind.c
contrib/pg_rewind/pg_rewind.h
contrib/pg_rewind/timeline.c
contrib/pg_rewind/util.c
contrib/pg_rewind/util.h

index 5577d8f92d491820e5ca10cb052a2e094e679d47..48a36929b2c7682d57cb7cc6e9ba16cbafdebc2d 100644 (file)
@@ -1,6 +1,6 @@
 # Makefile for pg_rewind
 #
-# Copyright (c) 2013-2014, PostgreSQL Global Development Group
+# Copyright (c) 2013-2015, PostgreSQL Global Development Group
 #
 
 PGFILEDESC = "pg_rewind - repurpose an old master server as standby"
index adb9beaa9df052233c57adb0104acea2ad826c2a..6b0ccc196befa7a8e651ffecd30a873e21fe16e3 100644 (file)
@@ -3,7 +3,7 @@
  * copy_fetch.c
  *       Functions for copying a PostgreSQL data directory
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 0f6147fc75ec8ef5ca9cef46839ef6ea6cdff9a9..235a881a1e57c70c6a91e1ffa24c4444e7411b20 100644 (file)
@@ -5,7 +5,7 @@
  *
  * This is a fairly simple bitmap.
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 9a216fcc759237469bb90f6a17a0d7b20a263d24..32bbec86f1877819af1a6c7d195d4906ff373434 100644 (file)
@@ -2,7 +2,7 @@
  *
  * datapagemap.h
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index ed05f953f83a4281a8c41cd151e2ff9d98cae766..97656117620eb666ace91e08fc2388c705cfba3c 100644 (file)
@@ -10,7 +10,7 @@
  * connection (libpq_fetch.c)
  *
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index b368915d0cdf1751f5aceddc41751baf11bdd35d..d3689dd37f66241b0128048d2a1b58703e456935 100644 (file)
@@ -8,7 +8,7 @@
  * directory (copy method), or a remote PostgreSQL server (libpq fetch
  * method).
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 0c19368683e047b2d9643c1c2ee9f5ebeddc766f..5fac54b3fc3a953ea06ae87f80929f65ff4422a7 100644 (file)
@@ -3,7 +3,7 @@
  * filemap.c
  *       A data structure for keeping track of files that have changed.
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 9c834fd7bd7b53ad16f2a4798f02450ce780b206..d806adff2164b517c726f32108c8b9152dca4fac 100644 (file)
@@ -2,7 +2,7 @@
  *
  * filemap.h
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *-------------------------------------------------------------------------
  */
 #ifndef FILEMAP_H
index cf366b6faf84327e63306581f6d2eabfc51c7638..5172acd3bf39963516d409b20ef8d3f5e15b2a12 100644 (file)
@@ -3,7 +3,7 @@
  * libpq_fetch.c
  *       Functions for fetching files from a remote server.
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 383e6c71fe20be8a5362e9ba0c1133a2379423cf..6d054df32276b677a0c110bcf394f46a9b4422dc 100644 (file)
@@ -3,7 +3,7 @@
  * parsexlog.c
  *       Functions for reading Write-Ahead-Log
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *-------------------------------------------------------------------------
index 501414fbdeb837cf6fc9b07ca5a75bf4f19c636f..853cefb985b101fa8991ad48d25543fda9522ef9 100644 (file)
@@ -3,7 +3,7 @@
  * pg_rewind.c
  *       Synchronizes an old master server to a new timeline
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index c89b1ec28c99eb947666412235eaaa3934b0b045..d092902632108276918ee49ab258156c64913bc4 100644 (file)
@@ -3,7 +3,7 @@
  * pg_rewind.h
  *
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
  *-------------------------------------------------------------------------
index b626eb2da6d154ccbbd5d8ed9ee4742c858b26c8..e9ea3706a908221d8b24233f69b7de3e10d63550 100644 (file)
@@ -3,7 +3,7 @@
  * timeline.c
  *       timeline-related functions.
  *
- * Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index 6e884bbb89d4f7202f50ca1f5f06e04fdc983b2a..bb03319389698c7046f80e097f5d5a46198cad70 100644 (file)
@@ -3,7 +3,7 @@
  * util.c
  *             Misc utility functions
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *
  *-------------------------------------------------------------------------
  */
index c722648c4c00b3c9602024c4af550dc799d4d88b..e3d69f8d2598fcb119bf57e180bca7b4fd012acf 100644 (file)
@@ -3,7 +3,7 @@
  * util.h
  *             Prototypes for functions in util.c
  *
- * Copyright (c) 2013-2014, PostgreSQL Global Development Group
+ * Copyright (c) 2013-2015, PostgreSQL Global Development Group
  *-------------------------------------------------------------------------
  */
 #ifndef UTIL_H