diff options
author | Peter Geoghegan <pg@bowt.ie> | 2025-03-05 10:27:31 -0500 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2025-03-05 10:27:31 -0500 |
commit | d00107cd63e780753aa25563fa37603369997d0c (patch) | |
tree | 66f156ea5785fe6bf79e3b0861aced63ed484c20 /src/include/access | |
parent | 4603903d294bbdd644afecf9b5970827db6d1ff5 (diff) | |
download | postgresql-d00107cd63e780753aa25563fa37603369997d0c.tar.gz postgresql-d00107cd63e780753aa25563fa37603369997d0c.zip |
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.
Diffstat (limited to 'src/include/access')
-rw-r--r-- | src/include/access/relscan.h | 7 |
1 files changed, 0 insertions, 7 deletions
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 @@ -151,13 +151,6 @@ typedef struct IndexScanDescData 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 * data returned by the scan. It can fill both, in which case the heap |