diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-12-19 04:08:32 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-12-19 04:08:32 +0000 |
commit | 4fca795de4f18bfdcd5421b50837832923c32ba9 (patch) | |
tree | f1bc8947f2b9d7f72460555a30cdf0543715d6db /src | |
parent | 50b5bec4855cf59963651e0c32a7b63964b77c1d (diff) | |
download | postgresql-4fca795de4f18bfdcd5421b50837832923c32ba9.tar.gz postgresql-4fca795de4f18bfdcd5421b50837832923c32ba9.zip |
Bump catversion to reflect the fact that HS patch changed pg_proc
contents, and PG_CONTROL_VERSION to reflect the fact that it changed
pg_control contents. (I see we did at least remember to change
XLOG_PAGE_MAGIC for the WAL contents changes.)
Diffstat (limited to 'src')
-rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
-rw-r--r-- | src/include/catalog/pg_control.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index 9b83c873849..dde12c28673 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.559 2009/12/15 22:59:54 petere Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.560 2009/12/19 04:08:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200912161 +#define CATALOG_VERSION_NO 200912181 #endif diff --git a/src/include/catalog/pg_control.h b/src/include/catalog/pg_control.h index a4d19f8b4a1..f88ca8c09a1 100644 --- a/src/include/catalog/pg_control.h +++ b/src/include/catalog/pg_control.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/pg_control.h,v 1.45 2009/12/19 01:32:42 sriggs Exp $ + * $PostgreSQL: pgsql/src/include/catalog/pg_control.h,v 1.46 2009/12/19 04:08:32 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -21,7 +21,7 @@ /* Version identifier for this pg_control format */ -#define PG_CONTROL_VERSION 851 +#define PG_CONTROL_VERSION 852 /* * Body of CheckPoint XLOG records. This is declared here because we keep |