diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 6feeaca4dc..31e5d1ded1 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -786,6 +786,12 @@ Indexes:
to remove an index.
+
+ Like any long-running transaction, CREATE INDEX on a
+ table can affect which tuples can be removed by concurrent
+ VACUUM on any other table.
+
+
Prior releases of PostgreSQL also had an
R-tree index method. This method has been removed because
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index a8b9a57544..2495f8903e 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -401,6 +401,12 @@ Indexes:
CONCURRENTLY cannot.
+
+ Like any long-running transaction, REINDEX on a table
+ can affect which tuples can be removed by concurrent
+ VACUUM on any other table.
+
+
REINDEX SYSTEM does not support
CONCURRENTLY since system catalogs cannot be reindexed