diff --git a/doc/src/sgml/ref/create_trigger.sgml b/doc/src/sgml/ref/create_trigger.sgml
index 289dd1d9da8..62ae8a16615 100644
--- a/doc/src/sgml/ref/create_trigger.sgml
+++ b/doc/src/sgml/ref/create_trigger.sgml
@@ -187,9 +187,11 @@ CREATE [ CONSTRAINT ] TRIGGER name
of the rows inserted, deleted, or modified by the current SQL statement.
This feature lets the trigger see a global view of what the statement did,
not just one row at a time. This option is only allowed for
- an AFTER trigger that is not a constraint trigger; also, if
- the trigger is an UPDATE trigger, it must not specify
- a column_name list.
+ an AFTER trigger on a plain table (not a foreign table).
+ The trigger should not be a constraint trigger. Also, if the trigger is
+ an UPDATE trigger, it must not specify
+ a column_name list when using
+ this option.
OLD TABLE may only be specified once, and only for a trigger
that can fire on UPDATE or DELETE; it creates a
transition relation containing the before-images of all rows