Commit de255a6e authored by Bruce Momjian's avatar Bruce Momjian

Add copyrights to pg_upgrade and pg_upgrade_tools files, per Tom.

parent ccbe0c14
......@@ -3,7 +3,8 @@
*
* server checks and output routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.9 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* controldata functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.6 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.7 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* dump functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.5 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* execution functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.6 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* file system operations
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.10 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.11 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* server-side function support
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.4 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.5 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* information support functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.8 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.9 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* options functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.9 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.10 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* per-page conversion operations
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.3 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.4 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* main source file
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.7 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.8 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
/*
* pg_upgrade.h
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.12 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.13 2010/07/03 16:25:01 momjian Exp $
*/
#include "postgres.h"
......
......@@ -3,7 +3,8 @@
*
* relfilenode functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.6 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* database server functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.5 2010/07/03 14:23:13 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.6 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* tablespace functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.4 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* utility functions
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.3 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* Postgres-version-specific routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.3 2010/07/03 14:23:14 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.4 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -3,7 +3,8 @@
*
* Postgres-version-specific routines
*
* $PostgreSQL: pgsql/contrib/pg_upgrade/version_old_8_3.c,v 1.4 2010/07/03 14:23:14 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade/version_old_8_3.c,v 1.5 2010/07/03 16:25:01 momjian Exp $
*/
#include "pg_upgrade.h"
......
......@@ -4,7 +4,8 @@
* server-side functions to set backend global variables
* to control oid and relfilenode assignment
*
* $PostgreSQL: pgsql/contrib/pg_upgrade_support/pg_upgrade_support.c,v 1.2 2010/07/03 14:23:14 momjian Exp $
* Copyright (c) 2010-2010, PostgreSQL Global Development Group
* $PostgreSQL: pgsql/contrib/pg_upgrade_support/pg_upgrade_support.c,v 1.3 2010/07/03 16:25:01 momjian Exp $
*/
#include "postgres.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment