diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-18 18:01:01 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-08-18 18:01:01 -0400 |
commit | 5f110933e1145ad40116cf3c67a454cb6cb71cc2 (patch) | |
tree | d7df8a38d60adcaca21a6dbc105a58884131b3c1 /src | |
parent | 5c66e99178c2f72042034cceb6bc4902650a2608 (diff) | |
download | postgresql-5f110933e1145ad40116cf3c67a454cb6cb71cc2.tar.gz postgresql-5f110933e1145ad40116cf3c67a454cb6cb71cc2.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/scripts/scripts_parallel.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 { |