pgsql: Fixes for vacuum_cleanup_index_scale_factor GUC option - Mailing list pgsql-committers

From Alexander Korotkov
Subject pgsql: Fixes for vacuum_cleanup_index_scale_factor GUC option
Date
Msg-id E1fWIL9-0002mg-8K@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
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

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9a994e37e08df3578f52011543dc28085dc18e21

Modified Files
--------------
doc/src/sgml/config.sgml                      | 83 +++++++++++++--------------
src/backend/utils/misc/guc.c                  |  2 +-
src/backend/utils/misc/postgresql.conf.sample |  3 +
3 files changed, 43 insertions(+), 45 deletions(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: pgsql: Fix typo in comment of commit_ts.c for incorrect reference toCL
Next
From: Andrew Dunstan
Date:
Subject: pgsql: Allow for pg_upgrade of attributes with missing values