From: David Rowley Date: Tue, 29 Oct 2024 03:24:47 +0000 (+1300) Subject: Doc: clarify enable_indexscan=off also disabled Index Only Scans X-Git-Tag: REL_17_1~37 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e5086b3ff4413fdd163c85a2ab5bfa26c7668cd3;p=thirdparty%2Fpostgresql.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 938ae2c6089..c782fc99a1b 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -5419,8 +5419,9 @@ ANY num_sync ( . @@ -5435,7 +5436,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.