mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
Add vacuum_delay_point call in compute_index_stats's per-sample-row loop.
Slow functions in index expressions might cause this loop to take long enough to make it worth being cancellable. Probably it would be enough to call CHECK_FOR_INTERRUPTS here, but for consistency with other per-sample-row loops in this file, let's use vacuum_delay_point. Report and patch by Jeff Janes. Back-patch to all supported branches.
This commit is contained in:
parent
1601830ec2
commit
e4cbfd673d
@ -742,6 +742,8 @@ compute_index_stats(Relation onerel, double totalrows,
|
||||
{
|
||||
HeapTuple heapTuple = rows[rowno];
|
||||
|
||||
vacuum_delay_point();
|
||||
|
||||
/*
|
||||
* Reset the per-tuple context each time, to reclaim any cruft
|
||||
* left behind by evaluating the predicate or index expressions.
|
||||
|
Loading…
Reference in New Issue
Block a user