Use "dead" rather than "expired" for vacuumable rows.
authorBruce Momjian
Wed, 27 Dec 2006 14:55:17 +0000 (14:55 +0000)
committerBruce Momjian
Wed, 27 Dec 2006 14:55:17 +0000 (14:55 +0000)
doc/src/sgml/maintenance.sgml
doc/src/sgml/ref/vacuum.sgml

index 4b321ca31bfc205a7b7f5996abc5099dcc6e7db3..3603692ee2580ec1c41a114ba73d9b9d98381eaf 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
 
  Routine Database Maintenance Tasks
    
     There are two variants of the VACUUM
     command. The first form, known as lazy vacuum or
-    just VACUUM, marks expired data in tables and
+    just VACUUM, marks dead data in tables and
     indexes for future reuse; it does not attempt
-    to reclaim the space used by this expired data unless the space is
+    to reclaim the space used by this dead data unless the space is
     at the end of the table and an exclusive table lock can be easily 
     obtained. Unused space at the start or middle of the file does
     not result in the file being shortened and space returned to the
    
     The second form is the VACUUM FULL
     command. This uses a more aggressive algorithm for reclaiming the
-    space consumed by expired row versions. Any space that is freed by
+    space consumed by dead row versions. Any space that is freed by
     VACUUM FULL is immediately returned to the
     operating system. Unfortunately, this variant of the
     VACUUM command acquires an exclusive lock on
index 8ca884ccf3ea1a844c2c8c0d572c33d7cb26c00d..f72f36bf392ec169cb2e704150a10afc384a25a7 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -29,7 +29,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ 
   Description
 
   
-   VACUUM reclaims storage occupied by expired tuples.
+   VACUUM reclaims storage occupied by dead tuples.
    In normal PostgreSQL operation, tuples that
    are deleted or obsoleted by an update are not physically removed from
    their table; they remain present until a VACUUM is
@@ -152,7 +152,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ 
    
     We recommend that active production databases be
     vacuumed frequently (at least nightly), in order to
-    remove expired rows. After adding or deleting a large number
+    remove dead rows. After adding or deleting a large number
     of rows, it may be a good idea to issue a VACUUM
     ANALYZE command for the affected table. This will update the
     system catalogs with