aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-02-02 16:49:46 -0500
committerPeter Eisentraut <peter_e@gmx.net>2017-02-02 16:50:28 -0500
commitaa09b9dcd57cbf18516332bf8310c12ef6f83715 (patch)
tree9af4c25b635ccfdf6c844a475f4242ed92f8b885
parentc82d4e658eff287846fe6243966d110ff4ae9025 (diff)
downloadpostgresql-aa09b9dcd57cbf18516332bf8310c12ef6f83715.tar.gz
postgresql-aa09b9dcd57cbf18516332bf8310c12ef6f83715.zip
doc: Add missing include in example code
It's not broken because the header file is included via other headers, but for better style we should be more explicit. Reported-by: mthrockmorton@hme.com
-rw-r--r--doc/src/sgml/trigger.sgml1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml
index 22966c06dc0..8f724c86648 100644
--- a/doc/src/sgml/trigger.sgml
+++ b/doc/src/sgml/trigger.sgml
@@ -705,6 +705,7 @@ CREATE TABLE ttest (
This is the source code of the trigger function:
<programlisting><![CDATA[
#include "postgres.h"
+#include "fmgr.h"
#include "executor/spi.h" /* this is what you need to work with SPI */
#include "commands/trigger.h" /* ... triggers ... */
#include "utils/rel.h" /* ... and relations */