diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml
index 069e500304f..4e082eaa637 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -312,9 +312,13 @@ ALTER TABLE name
as NOT VALID, by scanning the table to ensure there
are no unmatched rows. Nothing happens if the constraint is
already marked valid.
- The value of separating validation from initial creation of the
- constraint is that validation requires a lesser lock on the table
- than constraint creation does.
+
+
+ Validation can be a long process on larger tables and currently requires
+ an ACCESS EXCLUSIVE lock. The value of separating
+ validation from initial creation is that you can defer validation to less
+ busy times, or can be used to give additional time to correct pre-existing
+ errors while preventing new errors.