diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-03-29 15:04:09 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-03-29 15:04:24 -0400 |
commit | 995a664c85539e7f4ea6cdf3076df43d482bc7d7 (patch) | |
tree | 8603c2009cd23951e5d9f9b1de33d36b7c1f252f /src | |
parent | 56abebb9be6d1e7179d10cdc362caa4405f06784 (diff) | |
download | postgresql-995a664c85539e7f4ea6cdf3076df43d482bc7d7.tar.gz postgresql-995a664c85539e7f4ea6cdf3076df43d482bc7d7.zip |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/commands/analyze.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/commands/analyze.c b/src/backend/commands/analyze.c index 801df26945d..0962933da40 100644 --- a/src/backend/commands/analyze.c +++ b/src/backend/commands/analyze.c @@ -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. |