diff options
author | Bruce Momjian | 2010-07-03 14:23:14 +0000 |
---|---|---|
committer | Bruce Momjian | 2010-07-03 14:23:14 +0000 |
commit | ccbe0c14e6ada848201fd94bd23c72e488482043 (patch) | |
tree | e40f081ab4263865d2c997f87af8c5f57befe316 | |
parent | b3b7d603fb397219ada12a8044e6a51aa351958d (diff) |
Add CVS tags to pg_upgrade and pg_upgrade_support files, per request
from Tom.
-rw-r--r-- | contrib/pg_upgrade/IMPLEMENTATION | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/Makefile | 1 | ||||
-rw-r--r-- | contrib/pg_upgrade/TESTING | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/check.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/controldata.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/dump.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/exec.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/file.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/function.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/info.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/option.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/page.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/pg_upgrade.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/pg_upgrade.h | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/relfilenode.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/server.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/tablespace.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/util.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/version.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade/version_old_8_3.c | 2 | ||||
-rw-r--r-- | contrib/pg_upgrade_support/Makefile | 1 | ||||
-rw-r--r-- | contrib/pg_upgrade_support/pg_upgrade_support.c | 2 |
22 files changed, 42 insertions, 0 deletions
diff --git a/contrib/pg_upgrade/IMPLEMENTATION b/contrib/pg_upgrade/IMPLEMENTATION index d2c87b4f5b..91bee727b4 100644 --- a/contrib/pg_upgrade/IMPLEMENTATION +++ b/contrib/pg_upgrade/IMPLEMENTATION @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/contrib/pg_upgrade/IMPLEMENTATION,v 1.3 2010/07/03 14:23:13 momjian Exp $ + ------------------------------------------------------------------------------ PG_UPGRADE: IN-PLACE UPGRADES FOR POSTGRESQL ------------------------------------------------------------------------------ diff --git a/contrib/pg_upgrade/Makefile b/contrib/pg_upgrade/Makefile index c5ca04cf41..1998ffe899 100644 --- a/contrib/pg_upgrade/Makefile +++ b/contrib/pg_upgrade/Makefile @@ -1,6 +1,7 @@ # # Makefile for pg_upgrade # +# $PostgreSQL: pgsql/contrib/pg_upgrade/Makefile,v 1.4 2010/07/03 14:23:13 momjian Exp $ PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility" PGAPPICON = win32 diff --git a/contrib/pg_upgrade/TESTING b/contrib/pg_upgrade/TESTING index ec49263c27..ca771fefdd 100644 --- a/contrib/pg_upgrade/TESTING +++ b/contrib/pg_upgrade/TESTING @@ -1,3 +1,5 @@ +$PostgreSQL: pgsql/contrib/pg_upgrade/TESTING,v 1.2 2010/07/03 14:23:13 momjian Exp $ + The most effective way to test pg_upgrade, aside from testing on user data, is by upgrading the PostgreSQL regression database. diff --git a/contrib/pg_upgrade/check.c b/contrib/pg_upgrade/check.c index 775cc0b2d5..920652a994 100644 --- a/contrib/pg_upgrade/check.c +++ b/contrib/pg_upgrade/check.c @@ -2,6 +2,8 @@ * check.c * * server checks and output routines + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/check.c,v 1.8 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/controldata.c b/contrib/pg_upgrade/controldata.c index e74c5628ad..330690a7ee 100644 --- a/contrib/pg_upgrade/controldata.c +++ b/contrib/pg_upgrade/controldata.c @@ -2,6 +2,8 @@ * controldata.c * * controldata functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/controldata.c,v 1.6 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/dump.c b/contrib/pg_upgrade/dump.c index 8e92d72e39..e559f5dcc6 100644 --- a/contrib/pg_upgrade/dump.c +++ b/contrib/pg_upgrade/dump.c @@ -2,6 +2,8 @@ * dump.c * * dump functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/dump.c,v 1.4 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/exec.c b/contrib/pg_upgrade/exec.c index a8797be9d7..94c227556f 100644 --- a/contrib/pg_upgrade/exec.c +++ b/contrib/pg_upgrade/exec.c @@ -2,6 +2,8 @@ * exec.c * * execution functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/exec.c,v 1.5 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/file.c b/contrib/pg_upgrade/file.c index ebe892bf54..94511f60bf 100644 --- a/contrib/pg_upgrade/file.c +++ b/contrib/pg_upgrade/file.c @@ -2,6 +2,8 @@ * file.c * * file system operations + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/file.c,v 1.10 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/function.c b/contrib/pg_upgrade/function.c index d9b54b81fe..6c13a77865 100644 --- a/contrib/pg_upgrade/function.c +++ b/contrib/pg_upgrade/function.c @@ -2,6 +2,8 @@ * function.c * * server-side function support + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/function.c,v 1.4 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/info.c b/contrib/pg_upgrade/info.c index 19a7b8bda8..7b3e70764d 100644 --- a/contrib/pg_upgrade/info.c +++ b/contrib/pg_upgrade/info.c @@ -2,6 +2,8 @@ * info.c * * information support functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/info.c,v 1.8 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/option.c b/contrib/pg_upgrade/option.c index 58606dd2bf..512a669675 100644 --- a/contrib/pg_upgrade/option.c +++ b/contrib/pg_upgrade/option.c @@ -2,6 +2,8 @@ * opt.c * * options functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/option.c,v 1.9 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/page.c b/contrib/pg_upgrade/page.c index 18b0472eb2..185eb1addc 100644 --- a/contrib/pg_upgrade/page.c +++ b/contrib/pg_upgrade/page.c @@ -2,6 +2,8 @@ * page.c * * per-page conversion operations + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/page.c,v 1.3 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/pg_upgrade.c b/contrib/pg_upgrade/pg_upgrade.c index c3f8070be5..72a4ff45bd 100644 --- a/contrib/pg_upgrade/pg_upgrade.c +++ b/contrib/pg_upgrade/pg_upgrade.c @@ -2,6 +2,8 @@ * pg_upgrade.c * * main source file + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.c,v 1.7 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/pg_upgrade.h b/contrib/pg_upgrade/pg_upgrade.h index 148aa5e61b..fdc295a7fa 100644 --- a/contrib/pg_upgrade/pg_upgrade.h +++ b/contrib/pg_upgrade/pg_upgrade.h @@ -1,5 +1,7 @@ /* * pg_upgrade.h + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/pg_upgrade.h,v 1.12 2010/07/03 14:23:13 momjian Exp $ */ #include "postgres.h" diff --git a/contrib/pg_upgrade/relfilenode.c b/contrib/pg_upgrade/relfilenode.c index e457dfb590..788cc966c6 100644 --- a/contrib/pg_upgrade/relfilenode.c +++ b/contrib/pg_upgrade/relfilenode.c @@ -2,6 +2,8 @@ * relfilenode.c * * relfilenode functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/relfilenode.c,v 1.5 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/server.c b/contrib/pg_upgrade/server.c index ffe2b1030c..2a0ea5d760 100644 --- a/contrib/pg_upgrade/server.c +++ b/contrib/pg_upgrade/server.c @@ -2,6 +2,8 @@ * server.c * * database server functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/server.c,v 1.5 2010/07/03 14:23:13 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/tablespace.c b/contrib/pg_upgrade/tablespace.c index 9eda197f06..2dc4c47ac7 100644 --- a/contrib/pg_upgrade/tablespace.c +++ b/contrib/pg_upgrade/tablespace.c @@ -2,6 +2,8 @@ * tablespace.c * * tablespace functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/tablespace.c,v 1.3 2010/07/03 14:23:14 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/util.c b/contrib/pg_upgrade/util.c index f64dc4af5c..951a74a65f 100644 --- a/contrib/pg_upgrade/util.c +++ b/contrib/pg_upgrade/util.c @@ -2,6 +2,8 @@ * util.c * * utility functions + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/util.c,v 1.2 2010/07/03 14:23:14 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/version.c b/contrib/pg_upgrade/version.c index e14fdf14ed..d55f11ac88 100644 --- a/contrib/pg_upgrade/version.c +++ b/contrib/pg_upgrade/version.c @@ -2,6 +2,8 @@ * version.c * * Postgres-version-specific routines + * + * $PostgreSQL: pgsql/contrib/pg_upgrade/version.c,v 1.3 2010/07/03 14:23:14 momjian Exp $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade/version_old_8_3.c b/contrib/pg_upgrade/version_old_8_3.c index 982fcc6abc..dc34d359ff 100644 --- a/contrib/pg_upgrade/version_old_8_3.c +++ b/contrib/pg_upgrade/version_old_8_3.c @@ -2,6 +2,8 @@ * version.c * * 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 $ */ #include "pg_upgrade.h" diff --git a/contrib/pg_upgrade_support/Makefile b/contrib/pg_upgrade_support/Makefile index 42c2d42842..bd43c5093e 100644 --- a/contrib/pg_upgrade_support/Makefile +++ b/contrib/pg_upgrade_support/Makefile @@ -1,6 +1,7 @@ # # Makefile for pg_upgrade_support # +# $PostgreSQL: pgsql/contrib/pg_upgrade_support/Makefile,v 1.3 2010/07/03 14:23:14 momjian Exp $ PGFILEDESC = "pg_upgrade_support - server-side functions for pg_upgrade" diff --git a/contrib/pg_upgrade_support/pg_upgrade_support.c b/contrib/pg_upgrade_support/pg_upgrade_support.c index 50f9efd693..5b0123ebfa 100644 --- a/contrib/pg_upgrade_support/pg_upgrade_support.c +++ b/contrib/pg_upgrade_support/pg_upgrade_support.c @@ -3,6 +3,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 $ */ #include "postgres.h" |