diff --git a/doc/src/sgml/ref/create_policy.sgml b/doc/src/sgml/ref/create_policy.sgml
index 8ef8556b518..18ab4a78f92 100644
--- a/doc/src/sgml/ref/create_policy.sgml
+++ b/doc/src/sgml/ref/create_policy.sgml
@@ -63,7 +63,11 @@ CREATE POLICY name ON
@@ -204,8 +208,10 @@ CREATE POLICY name ON ALL WITH CHECK
- (or USING, if no WITH CHECK expression is defined) expression, the
- command will error.
+ expression, the entire command will be aborted. Note that if only a
+ USING clause is specified then that clause will be
+ used for both USING and
+ WITH CHECK cases.
@@ -256,7 +262,10 @@ CREATE POLICY name ON INSERT policy).
Any rows whose resulting values do not pass the
WITH CHECK expression will cause an ERROR and the
- entire command will be aborted.
+ entire command will be aborted. Note that if only a
+ USING clause is specified then that clause will be
+ used for both USING and
+ WITH CHECK cases.