diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-09-21 19:47:53 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-09-21 19:47:53 -0300 |
commit | c1d1ae1db23796e4d1b04f5c087944722cf1446a (patch) | |
tree | d7a02ee59248998f2b1e39c64a2e69a5578c0c6a /src/backend/access | |
parent | 8aed7f7a2ec46ad60c84c3c97300210850c3fbc8 (diff) | |
download | postgresql-c1d1ae1db23796e4d1b04f5c087944722cf1446a.tar.gz postgresql-c1d1ae1db23796e4d1b04f5c087944722cf1446a.zip |
Document XLOG_INCLUDE_XID a little better
I noticed that commit 0bead9af484c left this flag undocumented in
XLogSetRecordFlags, which led me to discover that the flag doesn't
actually do what the one comment on it said it does. Improve the
situation by adding some more comments.
Backpatch to 14, where the aforementioned commit appears.
Author: Álvaro Herrera <alvherre@alvh.no-ip.org>
Discussion: https://postgr.es/m/202109212119.c3nhfp64t2ql@alvherre.pgsql
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/transam/xloginsert.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/access/transam/xloginsert.c b/src/backend/access/transam/xloginsert.c index 32b4cc84e79..b153fad594d 100644 --- a/src/backend/access/transam/xloginsert.c +++ b/src/backend/access/transam/xloginsert.c @@ -399,6 +399,8 @@ XLogRegisterBufData(uint8 block_id, char *data, int len) * - XLOG_MARK_UNIMPORTANT, to signal that the record is not important for * durability, which allows to avoid triggering WAL archiving and other * background activity. + * - XLOG_INCLUDE_XID, a message-passing hack between XLogRecordAssemble + * and XLogResetInsertion. */ void XLogSetRecordFlags(uint8 flags) |