[PATCH 1/1] add LOG_NEVER

Nathan Bossart <nathan@postgresql.org>

From: Nathan Bossart <nathan@postgresql.org>
To:
Date: 2026-04-08T21:19:33Z
Lists: pgsql-hackers
---
 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--