Hello, I found a typo in guc.c.

>      {"enable_parallel_hash", PGC_USERSET, QUERY_TUNING_METHOD,
> -      gettext_noop("Enables the planner's user of parallel hash plans."),
> +      gettext_noop("Enables the planner's use of parallel hash plans."),

The "user" should be "use".

As you(who?) know, this applies only 11 and dev.

regards.

-- 
Kyotaro Horiguchi
NTT Open Source Software Center
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 9989d3a351..2a874dc78d 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -962,7 +962,7 @@ static struct config_bool ConfigureNamesBool[] =
 	},
 	{
 		{"enable_parallel_hash", PGC_USERSET, QUERY_TUNING_METHOD,
-			gettext_noop("Enables the planner's user of parallel hash plans."),
+			gettext_noop("Enables the planner's use of parallel hash plans."),
 			NULL
 		},
 		&enable_parallel_hash,

Reply via email to