diff options
author | Andres Freund <andres@anarazel.de> | 2022-05-28 13:08:19 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-05-28 13:11:59 -0700 |
commit | 0107855b1480d381f28f935e279ec3b64f410ef7 (patch) | |
tree | 1157b7258db9142136b3e78ef3cf8a53941e9275 /src | |
parent | b4529005fd387e863bfa9eb863629b1183c0449c (diff) | |
download | postgresql-0107855b1480d381f28f935e279ec3b64f410ef7.tar.gz postgresql-0107855b1480d381f28f935e279ec3b64f410ef7.zip |
Align stats_fetch_consistency definition with guc.c default.
Somewhat embarrassing oversight in 98f897339b0. Does not have a functional
impact, but is unnecessarily confusing.
Reported-By: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/Yo2351qVYqd/bJws@paquier.xyz
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/activity/pgstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/activity/pgstat.c b/src/backend/utils/activity/pgstat.c index 05f2d9e9bd0..ad5cf6fb915 100644 --- a/src/backend/utils/activity/pgstat.c +++ b/src/backend/utils/activity/pgstat.c @@ -183,7 +183,7 @@ static inline bool pgstat_is_kind_valid(int ikind); */ bool pgstat_track_counts = false; -int pgstat_fetch_consistency = PGSTAT_FETCH_CONSISTENCY_NONE; +int pgstat_fetch_consistency = PGSTAT_FETCH_CONSISTENCY_CACHE; /* ---------- |