mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
Correctly initialize newly added struct member
Valgrind was rightly complaining that IndexVacuumInfo->report_progress
(added by commit ab0dfc961b
) was not being initialized in some code
paths. Repair.
Per buildfarm member lousyjack.
This commit is contained in:
parent
e8abf97af7
commit
5f768045a1
@ -1717,6 +1717,7 @@ lazy_vacuum_index(Relation indrel,
|
||||
|
||||
ivinfo.index = indrel;
|
||||
ivinfo.analyze_only = false;
|
||||
ivinfo.report_progress = false;
|
||||
ivinfo.estimated_count = true;
|
||||
ivinfo.message_level = elevel;
|
||||
/* We can only provide an approximate value of num_heap_tuples here */
|
||||
@ -1749,6 +1750,7 @@ lazy_cleanup_index(Relation indrel,
|
||||
|
||||
ivinfo.index = indrel;
|
||||
ivinfo.analyze_only = false;
|
||||
ivinfo.report_progress = false;
|
||||
ivinfo.estimated_count = (vacrelstats->tupcount_pages < vacrelstats->rel_pages);
|
||||
ivinfo.message_level = elevel;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user