From: Tom Lane Date: Sat, 15 Nov 2003 19:46:36 +0000 (+0000) Subject: Minor wording improvement suggested by a comment in the interactive docs. X-Git-Tag: REL7_4~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f869a42d7f12ce68e1f2eb73ac700b360ba92ad8;p=postgresql Minor wording improvement suggested by a comment in the interactive docs. --- diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml index fcf1c1753e..aa8b5fb96d 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -1,5 +1,5 @@ @@ -71,7 +71,9 @@ $Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.31 2003/10/22 22:28:10 tgl A before trigger that does not intend to cause either of these behaviors must be careful to return as its result the same row that was - passed in. + passed in (that is, the NEW row for INSERT and + UPDATE triggers, the OLD row for + DELETE triggers).