aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2017-06-22 16:42:38 -0400
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2017-06-22 16:42:38 -0400
commit4947fced73c2ba43aaddaaba24320aaf5702307e (patch)
treecd3c86889048002f5efe0cb000ef336054f5e378
parent39e30cbc16cf8d2bd8fb8c5697d02eb220d26ffc (diff)
downloadpostgresql-4947fced73c2ba43aaddaaba24320aaf5702307e.tar.gz
postgresql-4947fced73c2ba43aaddaaba24320aaf5702307e.zip
Fix typo in comment
Once upon a time, WAL pointers could be NULL, but no longer. We talk about "valid" now. Reported-by: Amit Langote Discussion: https://postgr.es/m/33e9617d-27f1-eee8-3311-e27af98eaf2b@lab.ntt.co.jp
-rw-r--r--src/backend/access/transam/xlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index f7e76f2f7e5..68109e25416 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -3972,7 +3972,7 @@ CleanupBackupHistory(void)
/*
* Attempt to read an XLOG record.
*
- * If RecPtr is not NULL, try to read a record at that position. Otherwise
+ * If RecPtr is valid, try to read a record at that position. Otherwise
* try to read a record just after the last one previously read.
*
* If no valid record is available, returns NULL, or fails if emode is PANIC.