aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2014-11-03 12:23:08 -0500
committerRobert Haas <rhaas@postgresql.org>2014-11-03 12:24:42 -0500
commit585e0b9b277ad3b17a582b20daa8d09bd0ace8bd (patch)
tree0d706923b5dc71350e4d32dcafc10d8d32079844
parentf443de873e500de999a2d165731a0356b79a6ed7 (diff)
downloadpostgresql-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.h1
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 *);