diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-12-23 01:58:40 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-12-23 01:58:40 +0000 |
commit | ef5870350a58b827966505f6046b55a8dff7f253 (patch) | |
tree | 407221593c08508823190379ae22d61465cc9e54 | |
parent | 05911de4dabd2ab35a6017707cc4affade3d413c (diff) | |
download | postgresql-ef5870350a58b827966505f6046b55a8dff7f253.tar.gz postgresql-ef5870350a58b827966505f6046b55a8dff7f253.zip |
Change a VACUUM manual page word from 'deleted' to 'expired', so DELETE
and UPDATE are clearly covered by the term.
-rw-r--r-- | doc/src/sgml/ref/vacuum.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml index cf039113f64..8ca884ccf3e 100644 --- a/doc/src/sgml/ref/vacuum.sgml +++ b/doc/src/sgml/ref/vacuum.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.43 2006/11/05 22:42:07 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/vacuum.sgml,v 1.44 2006/12/23 01:58:40 momjian Exp $ PostgreSQL documentation --> @@ -29,7 +29,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] ANALYZE [ <replaceable class="PARAMETER"> <title>Description</title> <para> - <command>VACUUM</command> reclaims storage occupied by deleted tuples. + <command>VACUUM</command> reclaims storage occupied by expired tuples. In normal <productname>PostgreSQL</productname> operation, tuples that are deleted or obsoleted by an update are not physically removed from their table; they remain present until a <command>VACUUM</command> is |