1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-26 01:22:12 +03:00

Check the file system on postmaster startup and report any unreferenced

files in the server log.

Heikki Linnakangas
This commit is contained in:
Bruce Momjian
2005-05-02 18:26:54 +00:00
parent b656150ec0
commit 76668e6eb4
9 changed files with 302 additions and 26 deletions

View File

@ -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 */