From d00107cd63e780753aa25563fa37603369997d0c Mon Sep 17 00:00:00 2001 From: Peter Geoghegan Date: Wed, 5 Mar 2025 10:27:31 -0500 Subject: Revert "Show index search count in EXPLAIN ANALYZE." This reverts commit 5ead85fbc81162ab1594f656b036a22e814f96b3. This commit shows test failures with debug_parallel_query=regress. The underlying issue needs to be debugged, so revert for now. --- src/backend/access/gist/gistget.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/backend/access/gist/gistget.c') diff --git a/src/backend/access/gist/gistget.c b/src/backend/access/gist/gistget.c index 609e85fdae1..cc40e928e0a 100644 --- a/src/backend/access/gist/gistget.c +++ b/src/backend/access/gist/gistget.c @@ -625,7 +625,6 @@ gistgettuple(IndexScanDesc scan, ScanDirection dir) GISTSearchItem fakeItem; pgstat_count_index_scan(scan->indexRelation); - scan->nsearches++; so->firstCall = false; so->curPageData = so->nPageData = 0; @@ -751,7 +750,6 @@ gistgetbitmap(IndexScanDesc scan, TIDBitmap *tbm) return 0; pgstat_count_index_scan(scan->indexRelation); - scan->nsearches++; /* Begin the scan by processing the root page */ so->curPageData = so->nPageData = 0; -- cgit v1.2.3