Commit 38d500ac authored by Fujii Masao's avatar Fujii Masao

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.
parent afae1f78
...@@ -2015,11 +2015,11 @@ ...@@ -2015,11 +2015,11 @@
<entry><type>xid</type></entry> <entry><type>xid</type></entry>
<entry></entry> <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 transaction ID in this table. This is used to track
whether the table needs to be vacuumed in order to prevent multitransaction ID whether the table needs to be vacuumed in order to prevent multixact ID
ID wraparound or to allow <literal>pg_clog</> to be shrunk. Zero wraparound or to allow <literal>pg_multixact</> to be shrunk. Zero
(<symbol>InvalidTransactionId</symbol>) if the relation is not a table. (<symbol>InvalidMultiXactId</symbol>) if the relation is not a table.
</entry> </entry>
</row> </row>
...@@ -2683,10 +2683,10 @@ ...@@ -2683,10 +2683,10 @@
<entry><type>xid</type></entry> <entry><type>xid</type></entry>
<entry></entry> <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 transaction ID in this database. This is used to
track whether the database needs to be vacuumed in order to prevent 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 It is the minimum of the per-table
<structname>pg_class</>.<structfield>relminmxid</> values. <structname>pg_class</>.<structfield>relminmxid</> values.
</entry> </entry>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment