diff options
author | Robert Haas <rhaas@postgresql.org> | 2023-12-21 15:36:17 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2023-12-21 15:36:17 -0500 |
commit | 49f2194ed5c1f6274ac807fb033880aee0b0d1c3 (patch) | |
tree | 639049031e9933071de256a6823ef16575dcab67 /src/backend/backup/basebackup_incremental.c | |
parent | ba08c10fcd7f58486e77166fa93e61ed59962da0 (diff) | |
download | postgresql-49f2194ed5c1f6274ac807fb033880aee0b0d1c3.tar.gz postgresql-49f2194ed5c1f6274ac807fb033880aee0b0d1c3.zip |
Fix numerous typos in incremental backup commits.
Apparently, spell check would have been a really good idea.
Alexander Lakhin, with a few additions as per an off-list report
from Andres Freund.
Discussion: http://postgr.es/m/f08f7c60-1ad3-0b57-d580-54b11f07cddf@gmail.com
Diffstat (limited to 'src/backend/backup/basebackup_incremental.c')
-rw-r--r-- | src/backend/backup/basebackup_incremental.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/backup/basebackup_incremental.c b/src/backend/backup/basebackup_incremental.c index 1e5a5ac33ad..42bbe564e26 100644 --- a/src/backend/backup/basebackup_incremental.c +++ b/src/backend/backup/basebackup_incremental.c @@ -158,7 +158,7 @@ CreateIncrementalBackupInfo(MemoryContext mcxt) /* * Before taking an incremental backup, the caller must supply the backup - * manifest from a prior backup. Each chunk of manifest data recieved + * manifest from a prior backup. Each chunk of manifest data received * from the client should be passed to this function. */ void @@ -462,7 +462,7 @@ PrepareForIncrementalBackup(IncrementalBackupInfo *ib, ++deadcycles; /* - * If we've managed to wait for an entire minute withot the WAL + * If we've managed to wait for an entire minute without the WAL * summarizer absorbing a single WAL record, error out; probably * something is wrong. * @@ -473,7 +473,7 @@ PrepareForIncrementalBackup(IncrementalBackupInfo *ib, * likely to catch a reasonable number of the things that can go wrong * in practice (e.g. the summarizer process is completely hung, say * because somebody hooked up a debugger to it or something) without - * giving up too quickly when the sytem is just slow. + * giving up too quickly when the system is just slow. */ if (deadcycles >= 6) ereport(ERROR, |