mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
Revert "Make vacuum a bit more verbose to debug BF failure."
This reverts commit49967da65a
. Enough time has passed that we can be confident that07f32fcd23
resolved the issue. Therefore we can remove the temporary debugging aids. Author: Andres Freund <andres@anarazel.de> Discussion: https://postgr.es/m/E1k7tGP-0005V0-5k@gemulon.postgresql.org
This commit is contained in:
@ -1350,14 +1350,7 @@ lazy_scan_heap(Relation onerel, VacuumParams *params, LVRelStats *vacrelstats,
|
||||
if (HeapTupleIsHotUpdated(&tuple) ||
|
||||
HeapTupleIsHeapOnly(&tuple) ||
|
||||
params->index_cleanup == VACOPT_TERNARY_DISABLED)
|
||||
{
|
||||
/* temporary on-bf debugging */
|
||||
elog(LOG, "treating dead HOT tuple (updated %d, heap only: %d, index cleanup: %d) as alive",
|
||||
HeapTupleIsHotUpdated(&tuple), HeapTupleIsHeapOnly(&tuple),
|
||||
params->index_cleanup == VACOPT_TERNARY_DISABLED);
|
||||
|
||||
nkeep += 1;
|
||||
}
|
||||
else
|
||||
tupgone = true; /* we can delete the tuple */
|
||||
all_visible = false;
|
||||
|
Reference in New Issue
Block a user