diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-15 19:46:31 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-11-15 19:46:31 +0000 |
commit | c76037aa50561742a8ceaaead3e77082b0fd1cf4 (patch) | |
tree | 3545a5a3f3f87fc62ced018ef512d8f321fa1193 | |
parent | 5b6b587a95b70528ac402ad9fda8215709d9636f (diff) |
Minor wording improvement suggested by a comment in the interactive docs.
-rw-r--r-- | doc/src/sgml/trigger.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/trigger.sgml b/doc/src/sgml/trigger.sgml index fcf1c1753ee..a1a59f17c97 100644 --- a/doc/src/sgml/trigger.sgml +++ b/doc/src/sgml/trigger.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.31 2003/10/22 22:28:10 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/trigger.sgml,v 1.32 2003/11/15 19:46:31 tgl Exp $ --> <chapter id="triggers"> @@ -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 <command>INSERT</command> and + <command>UPDATE</command> triggers, the OLD row for + <command>DELETE</command> triggers). </para> <para> |