]> granicus.if.org Git - postgresql/commitdiff
Adjust #ifdef EXEC_BACKEND RemovePgTempFilesInDir() call.
authorAndres Freund <andres@anarazel.de>
Sat, 2 Dec 2017 01:28:05 +0000 (17:28 -0800)
committerAndres Freund <andres@anarazel.de>
Sat, 2 Dec 2017 01:28:05 +0000 (17:28 -0800)
Other callers were adjusted in the course of
dc6c4c9dc2a111519b76b22daaaac86c5608223b.

Per buildfarm.

src/backend/storage/file/fd.c

index 2e93e4ad632c1160c2ea615b14bc7c6929379230..ecd6d852700bb32f7f1620cdf132948b8413dea3 100644 (file)
@@ -3020,7 +3020,7 @@ RemovePgTempFiles(void)
         * DataDir as well.
         */
 #ifdef EXEC_BACKEND
-       RemovePgTempFilesInDir(PG_TEMP_FILES_DIR);
+       RemovePgTempFilesInDir(PG_TEMP_FILES_DIR, false);
 #endif
 }