Replace "transaction log" with "write-ahead log"
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 12 May 2017 15:49:56 +0000 (11:49 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 12 May 2017 15:52:43 +0000 (11:52 -0400)
commitc1a7f64b4a720a662ecec809bc9e289f35e887ad
tree4846174161b5302d7f0298e98620794a21388de1
parent56b6ef893fee9e9bf47d927a02f4d1ea911f4d9c
Replace "transaction log" with "write-ahead log"

This makes documentation and error messages match the renaming of "xlog"
to "wal" in APIs and file naming.
34 files changed:
doc/src/sgml/backup.sgml
doc/src/sgml/config.sgml
doc/src/sgml/func.sgml
doc/src/sgml/high-availability.sgml
doc/src/sgml/monitoring.sgml
doc/src/sgml/protocol.sgml
doc/src/sgml/recovery-config.sgml
doc/src/sgml/ref/checkpoint.sgml
doc/src/sgml/ref/initdb.sgml
doc/src/sgml/ref/pg_basebackup.sgml
doc/src/sgml/ref/pg_receivewal.sgml
doc/src/sgml/ref/pgbench.sgml
doc/src/sgml/ref/pgtestfsync.sgml
doc/src/sgml/release-10.sgml
src/backend/access/transam/timeline.c
src/backend/access/transam/transam.c
src/backend/access/transam/xlog.c
src/backend/access/transam/xlogfuncs.c
src/backend/access/transam/xlogutils.c
src/backend/postmaster/checkpointer.c
src/backend/postmaster/pgarch.c
src/backend/postmaster/postmaster.c
src/bin/initdb/initdb.c
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_receivewal.c
src/bin/pg_basebackup/receivelog.c
src/bin/pg_basebackup/streamutil.c
src/bin/pg_resetwal/pg_resetwal.c
src/bin/pg_rewind/timeline.c
src/bin/pg_waldump/pg_waldump.c
src/include/access/xlog.h
src/include/access/xlog_internal.h
src/include/access/xlogdefs.h
src/test/perl/PostgresNode.pm