From 9aafc4529f50e027f05037d993c6dd60a6cde54d Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 18 Dec 2019 13:03:41 -0500 Subject: [PATCH] Re-#include in checkpointer.c. Commit 7dbfea3c455e83a77213a92b9dfdc1c0577441ea thought it could get away with removing this, but Thomas Munro reports, on behalf of the buildfarm, that it's still needed at least on Windows to avoid compiler warnings. --- src/backend/postmaster/checkpointer.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/postmaster/checkpointer.c b/src/backend/postmaster/checkpointer.c index df527ac021..014b9e5289 100644 --- a/src/backend/postmaster/checkpointer.c +++ b/src/backend/postmaster/checkpointer.c @@ -37,6 +37,7 @@ #include "postgres.h" #include +#include #include "access/xlog.h" #include "access/xlog_internal.h"