diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-03-13 15:40:16 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-03-13 15:42:10 -0400 |
commit | 1e6de941e38fde512cadf33e55e644492f12abd1 (patch) | |
tree | 9d7e47ad33557c507c29bcca5b417df28a1a8aba /src/backend/access/transam/xlog.c | |
parent | aeed17d00037950a16cc5ebad5b5592e5fa1ad0f (diff) | |
download | postgresql-1e6de941e38fde512cadf33e55e644492f12abd1.tar.gz postgresql-1e6de941e38fde512cadf33e55e644492f12abd1.zip |
Change xlog to WAL in some error messages
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 744360c7696..c0e5362928e 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -6315,7 +6315,7 @@ StartupXLOG(void) ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY), errmsg("out of memory"), - errdetail("Failed while allocating an XLog reading processor."))); + errdetail("Failed while allocating a WAL reading processor."))); xlogreader->system_identifier = ControlFile->system_identifier; /* @@ -11246,8 +11246,8 @@ rm_redo_error_callback(void *arg) initStringInfo(&buf); xlog_outdesc(&buf, record); - /* translator: %s is an XLog record description */ - errcontext("xlog redo at %X/%X for %s", + /* translator: %s is a WAL record description */ + errcontext("WAL redo at %X/%X for %s", (uint32) (record->ReadRecPtr >> 32), (uint32) record->ReadRecPtr, buf.data); |