diff options
author | Noah Misch <noah@leadboat.com> | 2020-08-15 20:21:52 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2020-08-15 20:21:52 -0700 |
commit | 676a9c3cc4b5f1d262c29de318868948513f0fa0 (patch) | |
tree | 64edcf02ac31b655be3cd8d51dc8c298461fc7d7 /src/include/access/xlog_internal.h | |
parent | db659a3416b967d716806e558efbb9d1ec610cd1 (diff) |
Correct several behavior descriptions in comments.
Reuse cautionary language from src/test/ssl/README in
src/test/kerberos/README. SLRUs have had access to six-character
segments names since commit 73c986adde5d73a5e2555da9b5c8facedb146dcd,
and recovery stopped calling HeapTupleHeaderAdvanceLatestRemovedXid() in
commit 558a9165e081d1936573e5a7d576f5febd7fb55a. The other corrections
are more self-evident.
Diffstat (limited to 'src/include/access/xlog_internal.h')
-rw-r--r-- | src/include/access/xlog_internal.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index 9b2da56379e..4146753d476 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -43,11 +43,8 @@ typedef struct XLogPageHeaderData /* * When there is not enough space on current page for whole record, we * continue on the next page. xlp_rem_len is the number of bytes - * remaining from a previous page. - * - * Note that xlp_rem_len includes backup-block data; that is, it tracks - * xl_tot_len not xl_len in the initial header. Also note that the - * continuation data isn't necessarily aligned. + * remaining from a previous page; it tracks xl_tot_len in the initial + * header. Note that the continuation data isn't necessarily aligned. */ uint32 xlp_rem_len; /* total len of remaining data for record */ } XLogPageHeaderData; |