Documentation corrections for pg_replication_slots.
authorRobert Haas <rhaas@postgresql.org>
Thu, 1 May 2014 02:55:16 +0000 (22:55 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 1 May 2014 02:55:16 +0000 (22:55 -0400)
Thomas Reiss, with changes to the catalog_xmin language by me.

doc/src/sgml/catalogs.sgml

index 415a3bcf2e84ad7e5164ffb8cf24bbff97c0c535..b4a06e48348f41ed05657eaa20015e3194724906 100644 (file)
     <tbody>
      <row>
       <entry><structfield>slot_name</structfield></entry>
-      <entry><type>text</type></entry>
+      <entry><type>name</type></entry>
       <entry></entry>
       <entry>A unique, cluster-wide identifier for the replication slot</entry>
      </row>
 
      <row>
-      <entry><structfield>slot_type</structfield></entry>
-      <entry><type>text</type></entry>
+      <entry><structfield>plugin</structfield></entry>
+      <entry><type>name</type></entry>
       <entry></entry>
-      <entry>The slot type - <literal>physical</> or <literal>logical</></entry>
+      <entry>The basename of the shared object containing the output plugin this logical slot is using, or null for physical slots.</entry>
      </row>
 
      <row>
-      <entry><structfield>plugin</structfield></entry>
+      <entry><structfield>slot_type</structfield></entry>
       <entry><type>text</type></entry>
       <entry></entry>
-      <entry>The basename of the shared object containing the output plugin this logical slot is using, or null for physical slots.</entry>
+      <entry>The slot type - <literal>physical</> or <literal>logical</></entry>
      </row>
 
      <row>
       </entry>
      </row>
 
-     <row>
-      <entry><structfield>xmin</structfield></entry>
-      <entry><type>xid</type></entry>
-      <entry></entry>
-      <entry>The oldest transaction that this slot needs the database to
-      retain.  <literal>VACUUM</literal> cannot remove catalog tuples deleted
-      by any later transaction.
-      </entry>
-     </row>
-
      <row>
       <entry><structfield>catalog_xmin</structfield></entry>
       <entry><type>xid</type></entry>
       <entry></entry>
-      <entry>The <literal>xmin</literal>, or oldest transaction ID, that this
-      slot forces to be retained in the system catalogs. </entry>
+      <entry>The oldest transaction affecting the system catalogs that this
+      slot needs the database to retain.  <literal>VACUUM</literal> cannot
+      remove catalog tuples deleted by any later transaction.
+      </entry>
      </row>
 
      <row>