Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Fix outdated comment that talked about seek position of WAL file.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 16 Jun 2021 09:34:32 +0000 (12:34 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 16 Jun 2021 09:37:13 +0000 (12:37 +0300)
Since commit c24dcd0cfd, we have been using pg_pread() to read the WAL
file, which doesn't change the seek position (unless we fall back to
the implementation in src/port/pread.c). Update comment accordingly.

Backpatch-through: 12, where we started to use pg_pread()

src/backend/access/transam/xlog.c

index e52e805708b8ba547e046c22b741bec1795e6aeb..67dcd1e126dd524e84ce86cc8bd8f03b96eda7ad 100644 (file)
@@ -785,11 +785,9 @@ static XLogSegNo openLogSegNo = 0;
 
 /*
  * These variables are used similarly to the ones above, but for reading
- * the XLOG.  Note, however, that readOff generally represents the offset
- * of the page just read, not the seek position of the FD itself, which
- * will be just past that page. readLen indicates how much of the current
- * page has been read into readBuf, and readSource indicates where we got
- * the currently open file from.
+ * the XLOG.  readOff is the offset of the page just read, readLen
+ * indicates how much of it has been read into readBuf, and readSource
+ * indicates where we got the currently open file from.
  */
 static int readFile = -1;
 static XLogSegNo readSegNo = 0;