From c1a7f64b4a720a662ecec809bc9e289f35e887ad Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Fri, 12 May 2017 11:49:56 -0400 Subject: 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. --- src/backend/access/transam/timeline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/access/transam/timeline.c') diff --git a/src/backend/access/transam/timeline.c b/src/backend/access/transam/timeline.c index a11f0f85264..b442e7aa88f 100644 --- a/src/backend/access/transam/timeline.c +++ b/src/backend/access/transam/timeline.c @@ -151,7 +151,7 @@ readTimeLineHistory(TimeLineID targetTLI) if (nfields != 3) ereport(FATAL, (errmsg("syntax error in history file: %s", fline), - errhint("Expected a transaction log switchpoint location."))); + errhint("Expected a write-ahead log switchpoint location."))); if (result && tli <= lasttli) ereport(FATAL, -- cgit v1.2.3