mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-11-21 03:13:05 +08:00
Doc: clarify enable_indexscan=off also disabled Index Only Scans
Disabling enable_indexscan has always also disabled Index Only Scans. Here we make that more clear in the documentation in an attempt to prevent future complaints complaining about this expected behavior. Reported-by: Melanie Plageman Author: David G. Johnston, David Rowley Backpatch-through: 12, oldest supported version Discussion: https://postgr.es/m/CAAKRu_atV=kovgpaLREyG68PB5+ncKvJ2UNoeRetEgyC3Yb5Sw@mail.gmail.com
This commit is contained in:
parent
16ebf4f971
commit
4f47ee03d5
@ -5226,8 +5226,9 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
|
||||
</term>
|
||||
<listitem>
|
||||
<para>
|
||||
Enables or disables the query planner's use of index-scan plan
|
||||
types. The default is <literal>on</literal>.
|
||||
Enables or disables the query planner's use of index-scan and
|
||||
index-only-scan plan types. The default is <literal>on</literal>.
|
||||
Also see <xref linkend="guc-enable-indexonlyscan"/>.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
@ -5242,7 +5243,9 @@ ANY <replaceable class="parameter">num_sync</replaceable> ( <replaceable class="
|
||||
<para>
|
||||
Enables or disables the query planner's use of index-only-scan plan
|
||||
types (see <xref linkend="indexes-index-only-scans"/>).
|
||||
The default is <literal>on</literal>.
|
||||
The default is <literal>on</literal>. The
|
||||
<xref linkend="guc-enable-indexscan"/> setting must also be
|
||||
enabled to have the query planner consider index-only-scans.
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
Loading…
Reference in New Issue
Block a user