diff options
author | Amit Kapila <akapila@postgresql.org> | 2022-01-17 07:50:00 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2022-01-17 07:50:00 +0530 |
commit | 4c004dd520fcf262ba7a3f2b1f80a8aa6b56c8d0 (patch) | |
tree | b2e4a83754a3c573f52c811b1eaaae07197b5c43 /src/backend/storage/buffer/bufmgr.c | |
parent | dc686681e0799b12c40f44f85fc5bfd7fed4e57f (diff) | |
download | postgresql-4c004dd520fcf262ba7a3f2b1f80a8aa6b56c8d0.tar.gz postgresql-4c004dd520fcf262ba7a3f2b1f80a8aa6b56c8d0.zip |
Consistently use the function name CreateCheckPoint in code and comments.
Author: Bharath Rupireddy
Discussion: https://postgr.es/m/CALj2ACVZmKsvDjtd45+9oTcnjUJtC4LF2BYK8TpWT1f=NjJX3w@mail.gmail.com
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 4b722749898..a2512e750c2 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -3907,7 +3907,7 @@ MarkBufferDirtyHint(Buffer buffer, bool buffer_std) * never gets written, so crash recovery will fix. * * It's possible we may enter here without an xid, so it is - * essential that CreateCheckpoint waits for virtual transactions + * essential that CreateCheckPoint waits for virtual transactions * rather than full transactionids. */ MyProc->delayChkpt = delayChkpt = true; |