@@ -1507,8 +1507,8 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
15071507 /*
15081508 * It should never be the case that the visibility map page is set
15091509 * while the page-level bit is clear, but the reverse is allowed
1510- * (if checksums are not enabled). Regardless, set the both bits
1511- * so that we get back in sync.
1510+ * (if checksums are not enabled). Regardless, set both bits so
1511+ * that we get back in sync.
15121512 *
15131513 * NB: If the heap page is all-visible but the VM bit is not set,
15141514 * we don't need to dirty the heap page. However, if checksums
@@ -1563,9 +1563,9 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
15631563 }
15641564
15651565 /*
1566- * If the all-visible page is turned out to be all-frozen but not
1567- * marked, we should so mark it. Note that all_frozen is only valid
1568- * if all_visible is true, so we must check both.
1566+ * If the all-visible page is all-frozen but not marked as such yet,
1567+ * mark it as all-frozen . Note that all_frozen is only valid if
1568+ * all_visible is true, so we must check both.
15691569 */
15701570 else if (all_visible_according_to_vm && all_visible && all_frozen &&
15711571 !VM_ALL_FROZEN (onerel , blkno , & vmbuffer ))
0 commit comments