summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch2018-02-23 19:24:04 +0000
committerNoah Misch2018-02-23 19:24:04 +0000
commitfe35cea7cf896574d765edf86a293fbc67c74365 (patch)
tree6e54583fe77d1d34b70369202a2ee717e555bf2a
parent9afd513df042b22b98bb9b55f27265e95d34f9e6 (diff)
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).
-rw-r--r--doc/src/sgml/libpq.sgml15
-rw-r--r--src/test/examples/testlibpq2.sql2
2 files changed, 15 insertions, 2 deletions
diff --git a/doc/src/sgml/libpq.sgml b/doc/src/sgml/libpq.sgml
index b66c6da4f7..f327d4b5b5 100644
--- a/doc/src/sgml/libpq.sgml
+++ b/doc/src/sgml/libpq.sgml
@@ -8256,13 +8256,16 @@ testlibpq.o(.text+0xa4): undefined reference to `PQerrorMessage'
<programlisting>
<![CDATA[
/*
+ * src/test/examples/testlibpq.c
+ *
+ *
* testlibpq.c
*
* Test the C version of libpq, the PostgreSQL frontend library.
*/
#include <stdio.h>
#include <stdlib.h>
-#include <libpq-fe.h>
+#include "libpq-fe.h"
static void
exit_nicely(PGconn *conn)
@@ -8383,6 +8386,9 @@ main(int argc, char **argv)
<programlisting>
<![CDATA[
/*
+ * src/test/examples/testlibpq2.c
+ *
+ *
* testlibpq2.c
* Test of the asynchronous notification interface
*
@@ -8415,6 +8421,10 @@ main(int argc, char **argv)
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
#include "libpq-fe.h"
static void
@@ -8526,6 +8536,9 @@ main(int argc, char **argv)
<programlisting>
<![CDATA[
/*
+ * src/test/examples/testlibpq3.c
+ *
+ *
* testlibpq3.c
* Test out-of-line parameters and binary I/O.
*
diff --git a/src/test/examples/testlibpq2.sql b/src/test/examples/testlibpq2.sql
index fb7d353507..1686c3ed0d 100644
--- a/src/test/examples/testlibpq2.sql
+++ b/src/test/examples/testlibpq2.sql
@@ -3,4 +3,4 @@ CREATE TABLE TBL1 (i int4);
CREATE TABLE TBL2 (i int4);
CREATE RULE r1 AS ON INSERT TO TBL1 DO
-(INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);
+ (INSERT INTO TBL2 VALUES (new.i); NOTIFY TBL2);