diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-11-03 12:23:08 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-11-03 12:24:42 -0500 |
commit | 585e0b9b277ad3b17a582b20daa8d09bd0ace8bd (patch) | |
tree | 0d706923b5dc71350e4d32dcafc10d8d32079844 | |
parent | f443de873e500de999a2d165731a0356b79a6ed7 (diff) | |
download | postgresql-585e0b9b277ad3b17a582b20daa8d09bd0ace8bd.tar.gz postgresql-585e0b9b277ad3b17a582b20daa8d09bd0ace8bd.zip |
pqmq.h needs to include something that defines StringInfo.
Reported by Peter Eisentraut.
-rw-r--r-- | src/include/libpq/pqmq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/libpq/pqmq.h b/src/include/libpq/pqmq.h index 6bb24d99283..f8e68c9cb08 100644 --- a/src/include/libpq/pqmq.h +++ b/src/include/libpq/pqmq.h @@ -13,6 +13,7 @@ #ifndef PQMQ_H #define PQMQ_H +#include "lib/stringinfo.h" #include "storage/shm_mq.h" extern void pq_redirect_to_shm_mq(shm_mq *, shm_mq_handle *); |