aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Haas <rhaas@postgresql.org>2016-03-21 10:54:36 -0400
committerRobert Haas <rhaas@postgresql.org>2016-03-21 10:54:36 -0400
commitae507d9222989f2fd8455cf32d4dcb337ccf32bb (patch)
tree7feefb6cb855e180eafa4777a2f69032f76f36b7
parente06a38965b3bcdaa881e7e06892d4d8ab6c2c980 (diff)
downloadpostgresql-ae507d9222989f2fd8455cf32d4dcb337ccf32bb.tar.gz
postgresql-ae507d9222989f2fd8455cf32d4dcb337ccf32bb.zip
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.
-rw-r--r--src/backend/utils/misc/guc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 5a3a40e21d4..65a6cd4404f 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -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."),
NULL
},