From: Tom Lane Date: Fri, 19 Sep 2003 21:06:39 +0000 (+0000) Subject: Document that TRUNCATE ignores user-defined ON DELETE triggers. X-Git-Tag: REL7_4_BETA4~117 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8421253e54237248a1aa0d30669d22509b5d7e4e;p=postgresql Document that TRUNCATE ignores user-defined ON DELETE triggers. --- diff --git a/doc/src/sgml/ref/truncate.sgml b/doc/src/sgml/ref/truncate.sgml index aa27890f47..1588759035 100644 --- a/doc/src/sgml/ref/truncate.sgml +++ b/doc/src/sgml/ref/truncate.sgml @@ -1,5 +1,5 @@ @@ -58,6 +58,11 @@ TRUNCATE [ TABLE ] name to the table from other tables. Checking validity in such cases would require table scans, and the whole point is not to do one. + + + TRUNCATE will not run any user-defined ON DELETE triggers + that might exist for the table. +