diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/catalog.h | 3 | ||||
| -rw-r--r-- | src/include/utils/flatfiles.h | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index e18c806788..836a04583d 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.30 2004/12/31 22:03:24 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.31 2005/05/02 18:26:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,6 +19,7 @@ extern char *relpath(RelFileNode rnode); extern char *GetDatabasePath(Oid dbNode, Oid spcNode); +extern char *GetTablespacePath(Oid spcNode); extern bool IsSystemRelation(Relation relation); extern bool IsToastRelation(Relation relation); diff --git a/src/include/utils/flatfiles.h b/src/include/utils/flatfiles.h index 02e5175925..21eca19477 100644 --- a/src/include/utils/flatfiles.h +++ b/src/include/utils/flatfiles.h @@ -4,7 +4,7 @@ * Routines for maintaining "flat file" images of the shared catalogs. * * - * $PostgreSQL: pgsql/src/include/utils/flatfiles.h,v 1.1 2005/02/20 02:22:07 tgl Exp $ + * $PostgreSQL: pgsql/src/include/utils/flatfiles.h,v 1.2 2005/05/02 18:26:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -30,4 +30,7 @@ extern void AtEOSubXact_UpdateFlatFiles(bool isCommit, extern Datum flatfile_update_trigger(PG_FUNCTION_ARGS); +/* from checkfiles.c */ +extern void CheckStaleRelFiles(void); + #endif /* FLATFILES_H */ |
