public inbox for [email protected]
help / color / mirror / Atom feedFrom: Nathan Bossart <[email protected]>
Subject: [PATCH 1/1] add LOG_NEVER
Date: Wed, 8 Apr 2026 16:19:33 -0500
---
src/backend/postmaster/autovacuum.c | 3 ++-
src/include/utils/elog.h | 1 +
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/backend/postmaster/autovacuum.c b/src/backend/postmaster/autovacuum.c
index bd626a16363..f9fa874b79f 100644
--- a/src/backend/postmaster/autovacuum.c
+++ b/src/backend/postmaster/autovacuum.c
@@ -3676,7 +3676,8 @@ pg_stat_get_autovacuum_scores(PG_FUNCTION_ARGS)
avopts = extract_autovac_opts(tup, RelationGetDescr(rel));
relation_needs_vacanalyze(form->oid, avopts, form,
- effective_multixact_freeze_max_age, 0,
+ effective_multixact_freeze_max_age,
+ LOG_NEVER,
&dovacuum, &doanalyze, &wraparound,
&scores);
if (avopts)
diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h
index 440a02dd147..9c1e75c59ac 100644
--- a/src/include/utils/elog.h
+++ b/src/include/utils/elog.h
@@ -23,6 +23,7 @@ struct Node;
/* Error level codes */
+#define LOG_NEVER 0 /* Never emit this message */
#define DEBUG5 10 /* Debugging messages, in categories of
* decreasing detail. */
#define DEBUG4 11
--
2.50.1 (Apple Git-155)
--UiApWdCMawwHIchR--
reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Reply to all the recipients using the --to and --cc options:
reply via email
To: [email protected]
Cc: [email protected]
Subject: Re: [PATCH 1/1] add LOG_NEVER
In-Reply-To: <no-message-id-602134@localhost>
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox