]> granicus.if.org Git - postgresql/commitdiff
Fix typo in comment
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 14 Apr 2015 15:12:18 +0000 (12:12 -0300)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Tue, 14 Apr 2015 15:12:18 +0000 (12:12 -0300)
SLRU_SEGMENTS_PER_PAGE -> SLRU_PAGES_PER_SEGMENT

I introduced this ancient typo in subtrans.c and later propagated it to
multixact.c.  I fixed the latter in f741300c, but only back to 9.3;
backpatch to all supported branches for consistency.

src/backend/access/transam/multixact.c
src/backend/access/transam/subtrans.c

index 70811e39ca1f823d7bdc6a1fb43c2e905467ef6f..05f00c3c96ed36b33ab460603a456c6b3733e70c 100644 (file)
@@ -69,7 +69,7 @@
  * Note: because both MultiXactOffsets and TransactionIds are 32 bits and
  * wrap around at 0xFFFFFFFF, MultiXact page numbering also wraps around at
  * 0xFFFFFFFF/MULTIXACT_*_PER_PAGE, and segment numbering at
- * 0xFFFFFFFF/MULTIXACT_*_PER_PAGE/SLRU_SEGMENTS_PER_PAGE.  We need take no
+ * 0xFFFFFFFF/MULTIXACT_*_PER_PAGE/SLRU_PAGES_PER_SEGMENT.  We need take no
  * explicit notice of that fact in this module, except when comparing segment
  * and page numbers in TruncateMultiXact
  * (see MultiXact{Offset,Member}PagePrecedes).
index 7d1a106fec5dc46cdbea9a18b5ad62b844c08cff..6665171a7673ddf4311b4575b8dc7d9bda7f04ef 100644 (file)
@@ -42,7 +42,7 @@
  * Note: because TransactionIds are 32 bits and wrap around at 0xFFFFFFFF,
  * SubTrans page numbering also wraps around at
  * 0xFFFFFFFF/SUBTRANS_XACTS_PER_PAGE, and segment numbering at
- * 0xFFFFFFFF/SUBTRANS_XACTS_PER_PAGE/SLRU_SEGMENTS_PER_PAGE.  We need take no
+ * 0xFFFFFFFF/SUBTRANS_XACTS_PER_PAGE/SLRU_PAGES_PER_SEGMENT.  We need take no
  * explicit notice of that fact in this module, except when comparing segment
  * and page numbers in TruncateSUBTRANS (see SubTransPagePrecedes).
  */