summaryrefslogtreecommitdiff
path: root/src/include/utils/flatfiles.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-05-02 18:26:54 +0000
committerBruce Momjian <bruce@momjian.us>2005-05-02 18:26:54 +0000
commit76668e6eb468caa6e09af71d6bee820e2dc0fc3c (patch)
tree4d036964b0b551dde801c82db1f78b41ab7a4a77 /src/include/utils/flatfiles.h
parentb656150ec0b7bab95cb04f4d11ffa46f9fd4118d (diff)
Check the file system on postmaster startup and report any unreferenced
files in the server log. Heikki Linnakangas
Diffstat (limited to 'src/include/utils/flatfiles.h')
-rw-r--r--src/include/utils/flatfiles.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/utils/flatfiles.h b/src/include/utils/flatfiles.h
index 02e51759254..21eca19477d 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 */