diff --git a/doc/src/sgml/rules.sgml b/doc/src/sgml/rules.sgml
index 784c16e76ea..7a928bd7b90 100644
--- a/doc/src/sgml/rules.sgml
+++ b/doc/src/sgml/rules.sgml
@@ -859,7 +859,8 @@ SELECT t1.a, t2.b, t1.ctid FROM t1, t2 WHERE t1.a = t2.a;
a view. These rules will rewrite the command, typically into a command
that updates one or more tables, rather than views. That is the topic
of . Note that this will not work with
- MERGE, which currently does not support rules.
+ MERGE, which currently does not support rules on
+ the target relation other than SELECT rules.
@@ -873,7 +874,8 @@ SELECT t1.a, t2.b, t1.ctid FROM t1, t2 WHERE t1.a = t2.a;
Automatic rewriting of an INSERT,
- UPDATE, or DELETE query on a
+ UPDATE, DELETE, or
+ MERGE query on a
simple view is always tried last. Therefore, if a view has rules or
triggers, they will override the default behavior of automatically
updatable views.