]> granicus.if.org Git - postgresql/commitdiff
Fix ancient docs/comments thinko: XID comparison is mod 2^32, not 2^31.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 12 Dec 2013 17:39:54 +0000 (12:39 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 12 Dec 2013 17:39:54 +0000 (12:39 -0500)
Pointed out by Gianni Ciolli.

doc/src/sgml/maintenance.sgml
src/backend/access/transam/transam.c

index 616e41d52d2986cb2ab1699d2acb76bc5e40d9ef..ca1e82018f9a1e935ebf4e05bf799a909c9de8e1 100644 (file)
     as <literal>FrozenXID</>.  This XID does not follow the normal XID
     comparison rules and is always considered older
     than every normal XID. Normal XIDs are
-    compared using modulo-2<superscript>31</> arithmetic. This means
+    compared using modulo-2<superscript>32</> arithmetic. This means
     that for every normal XID, there are two billion XIDs that are
     <quote>older</> and two billion that are <quote>newer</>; another
     way to say it is that the normal XID space is circular with no
index 3cc0096d92ab016e94165d5a2e12fd8e9ebabdc1..b92a27bff36177c8c4529a56e4ae0246f5c46928 100644 (file)
@@ -301,7 +301,7 @@ TransactionIdPrecedes(TransactionId id1, TransactionId id2)
 {
        /*
         * If either ID is a permanent XID then we can just do unsigned
-        * comparison.  If both are normal, do a modulo-2^31 comparison.
+        * comparison.  If both are normal, do a modulo-2^32 comparison.
         */
        int32           diff;