diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-19 21:06:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-09-19 21:06:39 +0000 |
commit | 8421253e54237248a1aa0d30669d22509b5d7e4e (patch) | |
tree | 0096099e0ad687b2e4fe3403e6edf1255f4c389e /doc/src | |
parent | a13b01853084b6c6f9c34944bc19b3dd7dc4ceb2 (diff) | |
download | postgresql-8421253e54237248a1aa0d30669d22509b5d7e4e.tar.gz postgresql-8421253e54237248a1aa0d30669d22509b5d7e4e.zip |
Document that TRUNCATE ignores user-defined ON DELETE triggers.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/truncate.sgml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/truncate.sgml b/doc/src/sgml/ref/truncate.sgml index aa27890f47e..15887590352 100644 --- a/doc/src/sgml/ref/truncate.sgml +++ b/doc/src/sgml/ref/truncate.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/truncate.sgml,v 1.14 2003/09/19 21:04:19 tgl Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/truncate.sgml,v 1.15 2003/09/19 21:06:39 tgl Exp $ PostgreSQL documentation --> @@ -58,6 +58,11 @@ TRUNCATE [ TABLE ] <replaceable class="PARAMETER">name</replaceable> to the table from other tables. Checking validity in such cases would require table scans, and the whole point is not to do one. </para> + + <para> + <command>TRUNCATE</> will not run any user-defined ON DELETE triggers + that might exist for the table. + </para> </refsect1> <refsect1> |