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/include/access/relscan.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/include') diff --git a/src/include/access/relscan.h b/src/include/access/relscan.h index 8e0b08b0d94..dc6e0184284 100644 --- a/src/include/access/relscan.h +++ b/src/include/access/relscan.h @@ -150,13 +150,6 @@ typedef struct IndexScanDescData /* index access method's private state */ void *opaque; /* access-method-specific info */ - /* - * Instrumentation counters that are maintained by every index access - * method, for all scan types. These go here because there is no standard - * way to access PlanState.instrument during amgettuple calls. - */ - uint64 nsearches; /* total # of index searches */ - /* * In an index-only scan, a successful amgettuple call must fill either * xs_itup (and xs_itupdesc) or xs_hitup (and xs_hitupdesc) to provide the -- cgit v1.2.3