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).
This commit is contained in:
Noah Misch 2018-02-23 11:24:04 -08:00
parent 9afd513df0
commit fe35cea7cf
2 changed files with 15 additions and 2 deletions

View File

@ -8256,13 +8256,16 @@ testlibpq.o(.text+0xa4): undefined reference to `PQerrorMessage'
<programlisting> <programlisting>
<![CDATA[ <![CDATA[
/* /*
* src/test/examples/testlibpq.c
*
*
* testlibpq.c * testlibpq.c
* *
* Test the C version of libpq, the PostgreSQL frontend library. * Test the C version of libpq, the PostgreSQL frontend library.
*/ */
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <libpq-fe.h> #include "libpq-fe.h"
static void static void
exit_nicely(PGconn *conn) exit_nicely(PGconn *conn)
@ -8383,6 +8386,9 @@ main(int argc, char **argv)
<programlisting> <programlisting>
<![CDATA[ <![CDATA[
/* /*
* src/test/examples/testlibpq2.c
*
*
* testlibpq2.c * testlibpq2.c
* Test of the asynchronous notification interface * Test of the asynchronous notification interface
* *
@ -8415,6 +8421,10 @@ main(int argc, char **argv)
#include <errno.h> #include <errno.h>
#include <sys/time.h> #include <sys/time.h>
#include <sys/types.h> #include <sys/types.h>
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include "libpq-fe.h" #include "libpq-fe.h"
static void static void
@ -8526,6 +8536,9 @@ main(int argc, char **argv)
<programlisting> <programlisting>
<![CDATA[ <![CDATA[
/* /*
* src/test/examples/testlibpq3.c
*
*
* testlibpq3.c * testlibpq3.c
* Test out-of-line parameters and binary I/O. * Test out-of-line parameters and binary I/O.
* *

View File

@ -3,4 +3,4 @@ CREATE TABLE TBL1 (i int4);
CREATE TABLE TBL2 (i int4); CREATE TABLE TBL2 (i int4);
CREATE RULE r1 AS ON INSERT TO TBL1 DO 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);