aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2015-06-04 13:22:49 +0900
committerFujii Masao <fujii@postgresql.org>2015-06-04 13:23:39 +0900
commit290fb74794293e008f10f8a7501ae2e9f3969fce (patch)
tree0e5a076c0fafac8c7d42b73f9551d1c2fd95bb9f
parentf0a8515c449bd3c507e71c110c695a416f9d5e08 (diff)
downloadpostgresql-290fb74794293e008f10f8a7501ae2e9f3969fce.tar.gz
postgresql-290fb74794293e008f10f8a7501ae2e9f3969fce.zip
Fix some issues in pg_class.relminmxid and pg_database.datminmxid documentation.
- Correct the name of directory which those catalog columns allow to be shrunk. - Correct the name of symbol which is used as the value of pg_class.relminmxid when the relation is not a table. - Fix "ID ID" typo. Backpatch to 9.3 where those cataog columns were introduced.
-rw-r--r--doc/src/sgml/catalogs.sgml12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml
index 68f84343520..7aeab6c3443 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -1981,11 +1981,11 @@
<entry><type>xid</type></entry>
<entry></entry>
<entry>
- All multitransaction IDs before this one have been replaced by a
+ All multixact IDs before this one have been replaced by a
transaction ID in this table. This is used to track
- whether the table needs to be vacuumed in order to prevent multitransaction ID
- ID wraparound or to allow <literal>pg_clog</> to be shrunk. Zero
- (<symbol>InvalidTransactionId</symbol>) if the relation is not a table.
+ whether the table needs to be vacuumed in order to prevent multixact ID
+ wraparound or to allow <literal>pg_multixact</> to be shrunk. Zero
+ (<symbol>InvalidMultiXactId</symbol>) if the relation is not a table.
</entry>
</row>
@@ -2649,10 +2649,10 @@
<entry><type>xid</type></entry>
<entry></entry>
<entry>
- All multitransaction IDs before this one have been replaced with a
+ All multixact IDs before this one have been replaced with a
transaction ID in this database. This is used to
track whether the database needs to be vacuumed in order to prevent
- transaction ID wraparound or to allow <literal>pg_clog</> to be shrunk.
+ multixact ID wraparound or to allow <literal>pg_multixact</> to be shrunk.
It is the minimum of the per-table
<structname>pg_class</>.<structfield>relminmxid</> values.
</entry>