From: Tom Lane Date: Sun, 18 Aug 2019 22:01:01 +0000 (-0400) Subject: Fix failure-to-compile-standalone in scripts_parallel.h. X-Git-Tag: REL_13_BETA1~1612 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5f110933e1145ad40116cf3c67a454cb6cb71cc2;p=thirdparty%2Fpostgresql.git Fix failure-to-compile-standalone in scripts_parallel.h. Needs libpq-fe.h for references to PGConn. Discussion: https://postgr.es/m/17463.1566153454@sss.pgh.pa.us --- diff --git a/src/bin/scripts/scripts_parallel.h b/src/bin/scripts/scripts_parallel.h index f1a724a64f1..ab82c5e6a96 100644 --- a/src/bin/scripts/scripts_parallel.h +++ b/src/bin/scripts/scripts_parallel.h @@ -12,6 +12,8 @@ #ifndef SCRIPTS_PARALLEL_H #define SCRIPTS_PARALLEL_H +#include "libpq-fe.h" + typedef struct ParallelSlot {