1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-15 03:41:20 +03:00

Cosmetic cleanup for commit a760893dbd.

Mostly, fixing overlooked comments.
This commit is contained in:
Tom Lane
2012-02-21 14:14:16 -05:00
parent c2a2f7516b
commit 9789c99d01
4 changed files with 31 additions and 15 deletions

View File

@@ -539,7 +539,7 @@ btree_xlog_vacuum(XLogRecPtr lsn, XLogRecord *record)
/*
* Mark the page as not containing any LP_DEAD items --- see comments in
* _bt_delitems().
* _bt_delitems_vacuum().
*/
opaque = (BTPageOpaque) PageGetSpecialPointer(page);
opaque->btpo_flags &= ~BTP_HAS_GARBAGE;
@@ -720,7 +720,7 @@ btree_xlog_delete(XLogRecPtr lsn, XLogRecord *record)
/*
* Mark the page as not containing any LP_DEAD items --- see comments in
* _bt_delitems().
* _bt_delitems_delete().
*/
opaque = (BTPageOpaque) PageGetSpecialPointer(page);
opaque->btpo_flags &= ~BTP_HAS_GARBAGE;