diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-01-29 19:23:56 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-01-29 19:23:56 -0500 |
commit | ad10853b30b84d89905e023afa599de3a1fea4c6 (patch) | |
tree | 3ba5f3eaebdb3c01fd6acf715b5794b1b0f123b4 /src/backend/access/transam/clog.c | |
parent | dd243b3e40c24cd7c6b0db80bb39061f8f85af7b (diff) | |
download | postgresql-ad10853b30b84d89905e023afa599de3a1fea4c6.tar.gz postgresql-ad10853b30b84d89905e023afa599de3a1fea4c6.zip |
Assorted comment fixes, mostly just typos, but some obsolete statements.
YAMAMOTO Takashi
Diffstat (limited to 'src/backend/access/transam/clog.c')
-rw-r--r-- | src/backend/access/transam/clog.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/backend/access/transam/clog.c b/src/backend/access/transam/clog.c index 69b6ef352b2..33b5ca2d36f 100644 --- a/src/backend/access/transam/clog.c +++ b/src/backend/access/transam/clog.c @@ -44,9 +44,10 @@ * * Note: because TransactionIds are 32 bits and wrap around at 0xFFFFFFFF, * CLOG page numbering also wraps around at 0xFFFFFFFF/CLOG_XACTS_PER_PAGE, - * and CLOG segment numbering at 0xFFFFFFFF/CLOG_XACTS_PER_SEGMENT. We need - * take no explicit notice of that fact in this module, except when comparing - * segment and page numbers in TruncateCLOG (see CLOGPagePrecedes). + * and CLOG segment numbering at + * 0xFFFFFFFF/CLOG_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 TruncateCLOG (see CLOGPagePrecedes). */ /* We need two bits per xact, so four xacts fit in a byte */ |