From a7eab4e1f6c8ef013b7997fa43f72ac32f81bdf3 Mon Sep 17 00:00:00 2001 From: Noah Misch Date: Fri, 23 Feb 2018 11:24:04 -0800 Subject: [PATCH] Synchronize doc/ copies of src/test/examples/. This is mostly cosmetic, but it might fix build failures, on some platform, when copying from the documentation. Back-patch to 9.3 (all supported versions). --- doc/src/sgml/libpq.sgml | 18 ++++++++++++++++-- src/test/examples/testlibpq2.sql | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml index ada7d160050..4ea10bfc379 100644 --- a/doc/src/sgml/libpq.sgml +++ b/doc/src/sgml/libpq.sgml @@ -7779,13 +7779,16 @@ testlibpq.o(.text+0xa4): undefined reference to `PQerrorMessage' #include -#include +#include "libpq-fe.h" static void exit_nicely(PGconn *conn) @@ -7906,6 +7909,9 @@ main(int argc, char **argv) #include #include -#include +#include +#ifdef HAVE_SYS_SELECT_H +#include +#endif + +#include "libpq-fe.h" static void exit_nicely(PGconn *conn) @@ -8044,6 +8055,9 @@ main(int argc, char **argv)