]> granicus.if.org Git - postgresql/commit
Fixes for vacuum_cleanup_index_scale_factor GUC option
authorAlexander Korotkov <akorotkov@postgresql.org>
Fri, 22 Jun 2018 09:17:56 +0000 (12:17 +0300)
committerAlexander Korotkov <akorotkov@postgresql.org>
Fri, 22 Jun 2018 09:26:21 +0000 (12:26 +0300)
commit9a994e37e08df3578f52011543dc28085dc18e21
tree9cafed5a5706503acf9f0d0f84a88eb710053f3b
parent0aa5e65ab4fd2695f0e4108b9ec53a0546261e1f
Fixes for vacuum_cleanup_index_scale_factor GUC option

vacuum_cleanup_index_scale_factor was located in autovacuum group of
GUCs.  However, it affects not only autovacuum, but also manually run
VACUUM.  It appears that "client connection defaults" group of GUCs
is more appropriate for vacuum_cleanup_index_scale_factor, because
vacuum_*_age options are already located there.

Also, vacuum_cleanup_index_scale_factor was missed in
postgresql.conf.sample.  So, add it there with appropriate comment.

Author: Masahiko Sawada with minor editorization by me
Discussion: https://postgr.es/m/CAD21AoArsoXMLKudXSKN679FRzs6oubEchM53bHwn8Tp%3D2boNg%40mail.gmail.com
doc/src/sgml/config.sgml
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample