diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-05-10 22:27:30 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-05-10 22:27:30 +0000 |
commit | 35e16515080868e87849a6846ab1c36977157154 (patch) | |
tree | e6666df41d9dd86b5978c4b4072967c55347abe2 /src/backend/access | |
parent | 075ec42cf889598effc8f8a0f5c661f2e7408b61 (diff) | |
download | postgresql-35e16515080868e87849a6846ab1c36977157154.tar.gz postgresql-35e16515080868e87849a6846ab1c36977157154.zip |
Back out check for unreferenced files.
Heikki Linnakangas
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/transam/xlog.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 096b822599c..fdee5769118 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -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/backend/access/transam/xlog.c,v 1.190 2005/05/02 18:26:52 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.191 2005/05/10 22:27:29 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -43,7 +43,6 @@ #include "utils/builtins.h" #include "utils/guc.h" #include "utils/relcache.h" -#include "utils/flatfiles.h" /* @@ -4526,8 +4525,6 @@ StartupXLOG(void) CreateCheckPoint(true, true); - CheckStaleRelFiles(); - /* * Close down recovery environment */ @@ -4539,12 +4536,6 @@ StartupXLOG(void) */ remove_backup_label(); } - else - { - XLogInitRelationCache(); - CheckStaleRelFiles(); - XLogCloseRelationCache(); - } /* * Preallocate additional log files, if wanted. |