From 98f897339b011d04f3b9f48050aa31de9a5a4869 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 24 May 2022 21:24:13 -0700 Subject: [PATCH] Fix stats_fetch_consistency default value indicated in postgresql.conf.sample. Mistake in 5891c7a8ed8, likely made when switching the default value from none to fetch during development. Reported-By: Nathan Bossart Author: Nathan Bossart Discussion: https://postgr.es/m/20220524220147.GA1298892@nathanxps13 --- src/backend/utils/misc/postgresql.conf.sample | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index a5a6d14cd4b..48ad80cf2e8 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -619,7 +619,7 @@ #track_io_timing = off #track_wal_io_timing = off #track_functions = none # none, pl, all -#stats_fetch_consistency = none +#stats_fetch_consistency = cache # - Monitoring - -- 2.39.5