diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-10-01 18:03:11 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-10-01 18:03:11 -0300 |
commit | 0ce67bce00717d8934b599ab4409e28b33c612ea (patch) | |
tree | 0337fbc5791b36580f175356590b9436849b8ba2 /src/backend/access/transam/xlog.c | |
parent | a5e83ad79c282421f32224c5152d6182de34da35 (diff) | |
download | postgresql-0ce67bce00717d8934b599ab4409e28b33c612ea.tar.gz postgresql-0ce67bce00717d8934b599ab4409e28b33c612ea.zip |
Remove unstable, unnecessary test; fix typo
Commit ff9f111bce24 added some test code that's unportable and doesn't
add meaningful coverage. Remove it rather than try and get it to work
everywhere.
While at it, fix a typo in a log message added by the aforementioned
commit.
Backpatch to 14.
Discussion: https://postgr.es/m/3000074.1632947632@sss.pgh.pa.us
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index ce0faeb5d37..ebacc077603 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -10587,7 +10587,7 @@ VerifyOverwriteContrecord(xl_overwrite_contrecord *xlrec, XLogReaderState *state LSN_FORMAT_ARGS(state->overwrittenRecPtr)); ereport(LOG, - (errmsg("sucessfully skipped missing contrecord at %X/%X, overwritten at %s", + (errmsg("successfully skipped missing contrecord at %X/%X, overwritten at %s", LSN_FORMAT_ARGS(xlrec->overwritten_lsn), timestamptz_to_str(xlrec->overwrite_time)))); |