From: Tom Lane <tgl@sss.pgh.pa.us> Date: Tue, 17 Jul 2012 14:14:06 +0000 (-0400) Subject: Put back storage/proc.h in postmaster.c. X-Git-Tag: REL9_3_BETA1~1195 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57b9bdda39e05d127f6930045d289ffc9935c971;p=postgresql 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. --- 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"