From: David Rowley Date: Tue, 29 Oct 2024 03:26:18 +0000 (+1300) Subject: Doc: clarify enable_indexscan=off also disabled Index Only Scans X-Git-Tag: REL_13_17~36 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=ee8db41a94326e670255ad6c50b887c8c9c897f5;p=postgresql.git 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 --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index c96166794d4..07ef9dcfb00 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -4796,8 +4796,9 @@ ANY num_sync ( . @@ -4812,7 +4813,9 @@ ANY num_sync ( ). - The default is on. + The default is on. The + setting must also be + enabled to have the query planner consider index-only-scans.