1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

Make max_parallel_degree PGC_USERSET.

It was intended to be this way all along, just like other planner
GUCs such as work_mem.  But I goofed.
This commit is contained in:
Robert Haas 2016-03-21 10:54:36 -04:00
parent e06a38965b
commit ae507d9222

View File

@ -2637,7 +2637,7 @@ static struct config_int ConfigureNamesInt[] =
}, },
{ {
{"max_parallel_degree", PGC_SUSET, RESOURCES_ASYNCHRONOUS, {"max_parallel_degree", PGC_USERSET, RESOURCES_ASYNCHRONOUS,
gettext_noop("Sets the maximum number of parallel processes per executor node."), gettext_noop("Sets the maximum number of parallel processes per executor node."),
NULL NULL
}, },