From: Robert Haas Date: Wed, 18 Dec 2019 18:03:41 +0000 (-0500) Subject: Re-#include in checkpointer.c. X-Git-Tag: REL_13_BETA1~999 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9aafc4529f50e027f05037d993c6dd60a6cde54d;p=thirdparty%2Fpostgresql.git 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. --- diff --git a/src/backend/postmaster/checkpointer.c b/src/backend/postmaster/checkpointer.c index df527ac0215..014b9e5289c 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"