diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catalog.h | 5 | ||||
| -rw-r--r-- | src/include/catalog/catversion.h | 4 | ||||
| -rw-r--r-- | src/include/storage/relfilenode.h | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 52a69e13419..fb555cbc6b7 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.41 2008/08/11 11:05:11 heikki Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.42 2008/10/06 14:13:17 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -19,6 +19,9 @@ #include "utils/relcache.h" +extern const char *forkNames[]; +extern ForkNumber forkname_to_number(char *forkName); + extern char *relpath(RelFileNode rnode, ForkNumber forknum); extern char *GetDatabasePath(Oid dbNode, Oid spcNode); diff --git a/src/include/catalog/catversion.h b/src/include/catalog/catversion.h index fd6895263bb..cdd9fa272ea 100644 --- a/src/include/catalog/catversion.h +++ b/src/include/catalog/catversion.h @@ -37,7 +37,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.494 2008/10/06 13:05:37 mha Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.495 2008/10/06 14:13:17 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -53,6 +53,6 @@ */ /* yyyymmddN */ -#define CATALOG_VERSION_NO 200810061 +#define CATALOG_VERSION_NO 200810062 #endif diff --git a/src/include/storage/relfilenode.h b/src/include/storage/relfilenode.h index 128cff99a9d..383cc18a578 100644 --- a/src/include/storage/relfilenode.h +++ b/src/include/storage/relfilenode.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/relfilenode.h,v 1.18 2008/10/03 07:33:10 heikki Exp $ + * $PostgreSQL: pgsql/src/include/storage/relfilenode.h,v 1.19 2008/10/06 14:13:17 heikki Exp $ * *------------------------------------------------------------------------- */ @@ -27,7 +27,7 @@ typedef enum ForkNumber FSM_FORKNUM /* * NOTE: if you add a new fork, change MAX_FORKNUM below and update the - * name to number mapping in utils/adt/dbsize.c + * forkNames array in catalog.c */ } ForkNumber; |
