diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-01-12 11:48:45 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2021-01-12 11:48:45 -0300 |
commit | ee69833e6e5667b5396c4b843ef88a688a27bd1f (patch) | |
tree | bb951693f7085b0b00968c15ba4d15f0e51e5bb2 /src | |
parent | decf3fe61ca2b707e8ac7ef996b16ace8df1d165 (diff) | |
download | postgresql-ee69833e6e5667b5396c4b843ef88a688a27bd1f.tar.gz postgresql-ee69833e6e5667b5396c4b843ef88a688a27bd1f.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/transam/xlogreader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/transam/xlogreader.c b/src/backend/access/transam/xlogreader.c index cb76be4f469..aafd8e12890 100644 --- a/src/backend/access/transam/xlogreader.c +++ b/src/backend/access/transam/xlogreader.c @@ -1539,7 +1539,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) |