aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2017-12-01 17:28:05 -0800
committerAndres Freund <andres@anarazel.de>2017-12-01 17:28:05 -0800
commitec6a04005618c206163761e5739a8b90debd6b1e (patch)
tree79ecb087195a2e31d2a8d254e14fbebecc1dccca
parentdc6c4c9dc2a111519b76b22daaaac86c5608223b (diff)
downloadpostgresql-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.c2
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
}