index b66c6da4f70526a605c7bbd4adbea2f290452f14..f327d4b5b5b4b383e7fd7f8e50bd727597713ab3 100644 (file)
@@ -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)
<programlisting>
<![CDATA[
/*
+ * src/test/examples/testlibpq2.c
+ *
+ *
* testlibpq2.c
* Test of the asynchronous notification interface
*
#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
<programlisting>
<![CDATA[
/*
+ * src/test/examples/testlibpq3.c
+ *
+ *
* testlibpq3.c
* Test out-of-line parameters and binary I/O.
*
index fb7d3535073500b1179ae4924768153effc8600f..1686c3ed0dfff0c19f21ce599405f6ba6fabb039 100644 (file)
@@ -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);