mirror of
https://github.com/postgres/postgres.git
synced 2026-06-10 01:00:11 -04:00
Note that index-only scans can affect idx_tup_fetch.
An index-only scan that avoids heap fetches will increment idx_tup_read but not idx_tup_fetch.
This commit is contained in:
parent
b324384f6b
commit
c78d8cd146
1 changed files with 2 additions and 1 deletions
|
|
@ -507,7 +507,8 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
|
|||
considering bitmap scans, because <structfield>idx_tup_read</> counts
|
||||
index entries retrieved from the index while <structfield>idx_tup_fetch</>
|
||||
counts live rows fetched from the table; the latter will be less if any
|
||||
dead or not-yet-committed rows are fetched using the index.
|
||||
dead or not-yet-committed rows are fetched using the index, or if any
|
||||
heap fetches are avoided by means of an index-only scan.
|
||||
</para>
|
||||
</note>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue