Index: doc/src/sgml/maintenance.sgml
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/maintenance.sgml,v
retrieving revision 1.66
diff -c -c -r1.66 maintenance.sgml
*** doc/src/sgml/maintenance.sgml	16 Jan 2007 18:26:02 -0000	1.66
--- doc/src/sgml/maintenance.sgml	31 Jan 2007 04:12:07 -0000
***************
*** 615,623 ****
     for inefficient use of space: if all but a few index keys on a page have
     been deleted, the page remains allocated.  So a usage pattern in which all
     but a few keys in each range are eventually deleted will see poor use of
!    space.  The potential for bloat is not indefinite &mdash; at worst there
!    will be one key per page &mdash; but it may still be worthwhile to schedule
!    periodic reindexing for indexes that have such usage patterns.
    </para>
  
    <para>
--- 615,621 ----
     for inefficient use of space: if all but a few index keys on a page have
     been deleted, the page remains allocated.  So a usage pattern in which all
     but a few keys in each range are eventually deleted will see poor use of
!    space.  For such usage patterns, periodic reindexing is recommended.
    </para>
  
    <para>
Index: doc/src/sgml/ref/vacuum.sgml
===================================================================
RCS file: /cvsroot/pgsql/doc/src/sgml/ref/vacuum.sgml,v
retrieving revision 1.45
diff -c -c -r1.45 vacuum.sgml
*** doc/src/sgml/ref/vacuum.sgml	27 Dec 2006 14:55:17 -0000	1.45
--- doc/src/sgml/ref/vacuum.sgml	31 Jan 2007 04:12:07 -0000
***************
*** 167,172 ****
--- 167,175 ----
      most of the rows in a table and would like the table to physically shrink
      to occupy less disk space.  <command>VACUUM FULL</command> will usually
      shrink the table more than a plain <command>VACUUM</command> would.
+     The <option>FULL</option> option does not shrink indexes; a periodic
+     <command>REINDEX</> is still recommended.  In fact, it is often faster
+     to drop all indexes, <command>VACUUM FULL</>, and recreate the indexes.
     </para>
  
     <para>
