diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 2 | ||||
-rw-r--r-- | src/backend/storage/ipc/standby.c | 2 |
2 files changed, 2 insertions, 2 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; diff --git a/src/backend/storage/ipc/standby.c b/src/backend/storage/ipc/standby.c index d70f2e839dc..87ac0f74b27 100644 --- a/src/backend/storage/ipc/standby.c +++ b/src/backend/storage/ipc/standby.c @@ -1182,7 +1182,7 @@ standby_redo(XLogReaderState *record) * starting to accumulate changes at a point just prior to when we derive * the snapshot on the primary, then ignore duplicates when we later apply * the snapshot from the running xacts record. This is implemented during - * CreateCheckpoint() where we use the logical checkpoint location as + * CreateCheckPoint() where we use the logical checkpoint location as * our starting point and then write the running xacts record immediately * before writing the main checkpoint WAL record. Since we always start * up from a checkpoint and are immediately at our starting point, we |