BUG #16972: parameter parallel_leader_participation's category problem
The Post Office <noreply@postgresql.org>
From: PG Bug reporting form <noreply@postgresql.org>
To: pgsql-bugs@lists.postgresql.org
Cc: leiyanliang@highgo.com
Date: 2021-04-20T06:45:50Z
Lists: pgsql-bugs
The following bug has been logged on the website: Bug reference: 16972 Logged by: yanliang lei Email address: leiyanliang@highgo.com PostgreSQL version: 13.1 Operating system: CentOS7.6 Description: In the following SQL statement, parallel_leader_participation's category is ' Resource Usage / Asynchronous Behavior' postgres=# select * from pg_settings where name='parallel_leader_participation'; -[ RECORD 1 ]---+-------------------------------------------------------------- name | parallel_leader_participation setting | on unit | category | Resource Usage / Asynchronous Behavior short_desc | Controls whether Gather and Gather Merge also run subplans. extra_desc | Should gather nodes also run subplans, or just gather tuples? context | user vartype | bool source | default min_val | max_val | enumvals | boot_val | on reset_val | on sourcefile | sourceline | pending_restart | f postgres=# but in the documents (https://www.postgresql.org/docs/13/runtime-config-query.html#RUNTIME-CONFIG-QUERY-OTHER) parallel_leader_participation's category is 'Query Tuning / Other Planner Options' and in the category "Asynchronous Behavior"(https://www.postgresql.org/docs/13/runtime-config-resource.html#RUNTIME-CONFIG-RESOURCE-ASYNC-BEHAVIOR),there is no parallel_leader_participation parameter. so, what is parallel_leader_participation's category ?
Commits
-
doc: Move parallel_leader_participation to its correct category
- 1599e7b37512 14.0 landed