aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlogutils.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2017-05-12 11:49:56 -0400
committerPeter Eisentraut <peter_e@gmx.net>2017-05-12 11:52:43 -0400
commitc1a7f64b4a720a662ecec809bc9e289f35e887ad (patch)
tree4846174161b5302d7f0298e98620794a21388de1 /src/backend/access/transam/xlogutils.c
parent56b6ef893fee9e9bf47d927a02f4d1ea911f4d9c (diff)
downloadpostgresql-c1a7f64b4a720a662ecec809bc9e289f35e887ad.tar.gz
postgresql-c1a7f64b4a720a662ecec809bc9e289f35e887ad.zip
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.
Diffstat (limited to 'src/backend/access/transam/xlogutils.c')
-rw-r--r--src/backend/access/transam/xlogutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogutils.c b/src/backend/access/transam/xlogutils.c
index fb7f2e79746..d7f2e55b090 100644
--- a/src/backend/access/transam/xlogutils.c
+++ b/src/backend/access/transam/xlogutils.c
@@ -2,7 +2,7 @@
*
* xlogutils.c
*
- * PostgreSQL transaction log manager utility routines
+ * PostgreSQL write-ahead log manager utility routines
*
* This file contains support routines that are used by XLOG replay functions.
* None of this code is used during normal system operation.