diff options
author | Peter Geoghegan <pg@bowt.ie> | 2024-11-12 20:57:37 -0500 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2024-11-12 20:57:37 -0500 |
commit | 2a30b6836db40416abb0f6307aefa5d1562b022d (patch) | |
tree | 534c5ac092c7a89ed4f7a5c5adf99a5dd6ef4a27 | |
parent | 247e7647f598d541775a77057df15fd32651566a (diff) |
Count contrib/bloom index scans in pgstat view.
Maintain the pg_stat_user_indexes.idx_scan pgstat counter during
contrib/Bloom index scans.
Oversight in commit 9ee014fc, which added the Bloom index contrib
module.
Author: Masahiro Ikeda <ikedamsh@oss.nttdata.com>
Reviewed-By: Peter Geoghegan <pg@bowt.ie>
Discussion: https://postgr.es/m/c48839d881388ee401a01807c686004d@oss.nttdata.com
Backpatch: 13- (all supported branches).
-rw-r--r-- | contrib/bloom/blscan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/bloom/blscan.c b/contrib/bloom/blscan.c index 6ae3710d9f7..6b65502778d 100644 --- a/contrib/bloom/blscan.c +++ b/contrib/bloom/blscan.c @@ -121,6 +121,7 @@ blgetbitmap(IndexScanDesc scan, TIDBitmap *tbm) */ bas = GetAccessStrategy(BAS_BULKREAD); npages = RelationGetNumberOfBlocks(scan->indexRelation); + pgstat_count_index_scan(scan->indexRelation); for (blkno = BLOOM_HEAD_BLKNO; blkno < npages; blkno++) { |