From 7af6d13061ee00924f555bcb77bb2499f1aa03f8 Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Tue, 12 Nov 2024 20:57:43 -0500 Subject: [PATCH] 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 Reviewed-By: Peter Geoghegan Discussion: https://postgr.es/m/c48839d881388ee401a01807c686004d@oss.nttdata.com Backpatch: 13- (all supported branches). --- contrib/bloom/blscan.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/bloom/blscan.c b/contrib/bloom/blscan.c index 0a303a49b24..6a90c7a7175 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++) { -- 2.39.5