diff options
| author | Peter Eisentraut | 2017-05-12 15:49:56 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2017-05-12 15:52:43 +0000 |
| commit | c1a7f64b4a720a662ecec809bc9e289f35e887ad (patch) | |
| tree | 4846174161b5302d7f0298e98620794a21388de1 /src/include | |
| parent | 56b6ef893fee9e9bf47d927a02f4d1ea911f4d9c (diff) | |
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/include')
| -rw-r--r-- | src/include/access/xlog.h | 2 | ||||
| -rw-r--r-- | src/include/access/xlog_internal.h | 2 | ||||
| -rw-r--r-- | src/include/access/xlogdefs.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index d23aab589e3..4d9773459de 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -1,7 +1,7 @@ /* * xlog.h * - * PostgreSQL transaction log manager + * PostgreSQL write-ahead log manager * * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California diff --git a/src/include/access/xlog_internal.h b/src/include/access/xlog_internal.h index c09c0f8e5f4..6e2bfd0ad03 100644 --- a/src/include/access/xlog_internal.h +++ b/src/include/access/xlog_internal.h @@ -1,7 +1,7 @@ /* * xlog_internal.h * - * PostgreSQL transaction log internal declarations + * PostgreSQL write-ahead log internal declarations * * NOTE: this file is intended to contain declarations useful for * manipulating the XLOG files directly, but it is not supposed to be diff --git a/src/include/access/xlogdefs.h b/src/include/access/xlogdefs.h index 53b60c1dcda..0f07bb26746 100644 --- a/src/include/access/xlogdefs.h +++ b/src/include/access/xlogdefs.h @@ -1,7 +1,7 @@ /* * xlogdefs.h * - * Postgres transaction log manager record pointer and + * Postgres write-ahead log manager record pointer and * timeline number definitions * * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group |
