diff options
| author | Robert Haas | 2016-06-09 13:08:27 +0000 |
|---|---|---|
| committer | Robert Haas | 2016-06-09 14:00:26 +0000 |
| commit | c9ce4a1c61ebf39c03885cc19fe7c32edc04a300 (patch) | |
| tree | 45fd8dd5e21154f735d29aa744b2cea5b6cda3eb /src/bin/psql | |
| parent | 6581e930a8546a764e948ad429fc2e179fc38d09 (diff) | |
Eliminate "parallel degree" terminology.
This terminology provoked widespread complaints. So, instead, rename
the GUC max_parallel_degree to max_parallel_workers_per_gather
(leaving room for a possible future GUC max_parallel_workers that acts
as a system-wide limit), and rename the parallel_degree reloption to
parallel_workers. Rename structure members to match.
These changes create a dump/restore hazard for users of PostgreSQL
9.6beta1 who have set the reloption (or applied the GUC using ALTER
USER or ALTER DATABASE).
Diffstat (limited to 'src/bin/psql')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 3b07726e574..cc10abc1c43 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1784,7 +1784,7 @@ psql_completion(const char *text, int start, int end) "autovacuum_vacuum_scale_factor", "autovacuum_vacuum_threshold", "fillfactor", - "parallel_degree", + "parallel_workers", "log_autovacuum_min_duration", "toast.autovacuum_enabled", "toast.autovacuum_freeze_max_age", |
