From 6242a38164eb1f81fb8735ea508100685a6ffa9a Mon Sep 17 00:00:00 2001
From: Daniil Davidov <d.davydov@postgrespro.ru>
Date: Sat, 28 Feb 2026 17:33:45 +0700
Subject: [PATCH] fixes for 0001 patch

---
 src/include/utils/rel.h | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h
index 7c5e35a486c..11dd3aebc6c 100644
--- a/src/include/utils/rel.h
+++ b/src/include/utils/rel.h
@@ -313,8 +313,9 @@ typedef struct AutoVacOpts
 	bool		enabled;
 
 	/*
-	 * Max number of parallel autovacuum workers. If value is 0 then parallel
-	 * degree will computed based on number of indexes.
+	 * Target number of parallel autovacuum workers. -1 by default disables
+	 * parallel vacuum during autovacuum. 0 means choose the parallel degree
+	 * based on the number of indexes.
 	 */
 	int			autovacuum_parallel_workers;
 
-- 
2.43.0

