From 57b9bdda39e05d127f6930045d289ffc9935c971 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 17 Jul 2012 10:14:06 -0400 Subject: [PATCH] Put back storage/proc.h in postmaster.c. I took this out thinking it wasn't needed anymore, but the EXEC_BACKEND code still needs it. Per buildfarm. --- src/backend/postmaster/postmaster.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 0be3230c2a..bbf725dfbc 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -112,6 +112,7 @@ #include "storage/ipc.h" #include "storage/pg_shmem.h" #include "storage/pmsignal.h" +#include "storage/proc.h" #include "tcop/tcopprot.h" #include "utils/builtins.h" #include "utils/datetime.h"