diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml index a8ee6c7d951..56dfec80e6c 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -1,5 +1,5 @@ @@ -431,8 +431,10 @@ typedef struct Trigger - A trigger function must return either NULL or a - HeapTuple pointer. Be careful to return either + A trigger function must return either a + HeapTuple pointer or a NULL pointer + (not a SQL NULL, that is, do not set isNull true). + Be careful to return either tg_trigtuple or tg_newtuple, as appropriate, if you don't want to modify the row being operated on.