Skip to content

Commit 0f9045f

Browse files
committed
fix debug message after hash type change
1 parent 8d42b6b commit 0f9045f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -699,10 +699,10 @@ ptrack_mark_block(RelFileNodeBackend smgr_rnode,
699699
elog(DEBUG3, "ptrack_mark_block: map[%zu]=" UINT64_FORMAT " <- " UINT64_FORMAT, slot1, old_lsn.value, new_lsn);
700700
while (old_lsn.value < new_lsn &&
701701
!pg_atomic_compare_exchange_u64(&ptrack_map->entries[slot1], (uint64 *) &old_lsn.value, new_lsn));
702-
elog(DEBUG3, "ptrack_mark_block: map[%zu]=" UINT64_FORMAT, hash, pg_atomic_read_u64(&ptrack_map->entries[slot1]));
703702

704703
/* And to the second */
705704
old_lsn.value = pg_atomic_read_u64(&ptrack_map->entries[slot2]);
705+
elog(DEBUG3, "ptrack_mark_block: map[%zu]=" UINT64_FORMAT " <- " UINT64_FORMAT, slot2, old_lsn.value, new_lsn);
706706
while (old_lsn.value < new_lsn &&
707707
!pg_atomic_compare_exchange_u64(&ptrack_map->entries[slot2], (uint64 *) &old_lsn.value, new_lsn));
708708
}

0 commit comments

Comments
 (0)