diff options
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 | ||||
-rw-r--r-- | src/backend/commands/waitlsn.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index e96aa4d1cb1..853ab06812b 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6168,7 +6168,7 @@ StartupXLOG(void) /* * Wake up all waiters for replay LSN. They need to report an error that - * recovery was ended before achieving the target LSN. + * recovery was ended before reaching the target LSN. */ WaitLSNSetLatches(InvalidXLogRecPtr); diff --git a/src/backend/commands/waitlsn.c b/src/backend/commands/waitlsn.c index d7065726749..ffa83a20008 100644 --- a/src/backend/commands/waitlsn.c +++ b/src/backend/commands/waitlsn.c @@ -299,7 +299,7 @@ WaitForLSNReplay(XLogRecPtr targetLSN, int64 timeout) /* * If the timeout value is specified, calculate the number of * milliseconds before the timeout. Exit if the timeout is already - * achieved. + * reached. */ if (timeout > 0) { @@ -325,7 +325,7 @@ WaitForLSNReplay(XLogRecPtr targetLSN, int64 timeout) deleteLSNWaiter(); /* - * If we didn't achieve the target LSN, we must be exited by timeout. + * If we didn't reach the target LSN, we must be exited by timeout. */ if (targetLSN > currentLSN) { |