diff --git a/doc/src/sgml/ref/create_trigger.sgml b/doc/src/sgml/ref/create_trigger.sgml new file mode 100644 index d9817e4..37d339d *** a/doc/src/sgml/ref/create_trigger.sgml --- b/doc/src/sgml/ref/create_trigger.sgml *************** UPDATE OF column_name1UPDATE OF column_name syntax) will fire when any of its columns are listed as targets in the UPDATE ! command's SET list. It is possible for a column's value ! to change even when the trigger is not fired, because changes made to the ! row's contents by BEFORE UPDATE triggers are not considered. ! Conversely, a command such as UPDATE ... SET x = x ... ! will fire a trigger on column x, even though the column's ! value did not change. --- 374,384 ---- A column-specific trigger (one defined using the UPDATE OF column_name syntax) will fire when any of its columns are listed as targets in the UPDATE ! command's SET list. Note that the trigger will fire even if the ! specified column's value did not change, for example when issuing a command ! such as UPDATE ... SET x = x .... However, changes made to the ! specified column by any BEFORE UPDATE triggers will not cause ! the trigger to fire.