diff options
author | Andres Freund <andres@anarazel.de> | 2017-12-01 17:28:05 -0800 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2017-12-01 17:28:05 -0800 |
commit | ec6a04005618c206163761e5739a8b90debd6b1e (patch) | |
tree | 79ecb087195a2e31d2a8d254e14fbebecc1dccca | |
parent | dc6c4c9dc2a111519b76b22daaaac86c5608223b (diff) | |
download | postgresql-ec6a04005618c206163761e5739a8b90debd6b1e.tar.gz postgresql-ec6a04005618c206163761e5739a8b90debd6b1e.zip |
Adjust #ifdef EXEC_BACKEND RemovePgTempFilesInDir() call.
Other callers were adjusted in the course of
dc6c4c9dc2a111519b76b22daaaac86c5608223b.
Per buildfarm.
-rw-r--r-- | src/backend/storage/file/fd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/file/fd.c b/src/backend/storage/file/fd.c index 2e93e4ad632..ecd6d852700 100644 --- a/src/backend/storage/file/fd.c +++ b/src/backend/storage/file/fd.c @@ -3020,7 +3020,7 @@ RemovePgTempFiles(void) * DataDir as well. */ #ifdef EXEC_BACKEND - RemovePgTempFilesInDir(PG_TEMP_FILES_DIR); + RemovePgTempFilesInDir(PG_TEMP_FILES_DIR, false); #endif } |