summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2021-01-12 11:48:45 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2021-01-12 11:48:45 -0300
commita8bb366ad0e5c422622ee00d5e3105f8451deb62 (patch)
treef04f9109f12be4fc182056af98a98b28b990c544
parent7bf325c1fe56a0c5de0e5603910209e8bbb8e8c6 (diff)
Fix thinko in comment
This comment has been wrong since its introduction in commit 2c03216d8311. Author: Masahiko Sawada <sawada.mshk@gmail.com> Discussion: https://postgr.es/m/CAD21AoAzz6qipFJBbGEaHmyWxvvNDp8httbwLR9tUQWaTjUs2Q@mail.gmail.com
-rw-r--r--src/backend/access/transam/xlogreader.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c
index 742ac30b5fa..9b1c07f0146 100644
--- a/src/backend/access/transam/xlogreader.c
+++ b/src/backend/access/transam/xlogreader.c
@@ -1368,7 +1368,7 @@ XLogRecGetBlockData(XLogReaderState *record, uint8 block_id, Size *len)
/*
* Restore a full-page image from a backup block attached to an XLOG record.
*
- * Returns the buffer number containing the page.
+ * Returns true if a full-page image is restored.
*/
bool
RestoreBlockImage(XLogReaderState *record, uint8 block_id, char *page)