diff options
| author | Robert Haas | 2016-04-08 15:14:56 +0000 |
|---|---|---|
| committer | Robert Haas | 2016-04-08 15:14:56 +0000 |
| commit | 25fe8b5f1ac93c3ec01519854e4f554b2e57a926 (patch) | |
| tree | 38e7e8d5bbe0d6f6ab67f19eb38d0e2e5fdcd9e5 /src/bin/psql | |
| parent | b0b64f65054e6b858b845b46298a624aaaea1deb (diff) | |
Add a 'parallel_degree' reloption.
The code that estimates what parallel degree should be uesd for the
scan of a relation is currently rather stupid, so add a parallel_degree
reloption that can be used to override the planner's rather limited
judgement.
Julien Rouhaud, reviewed by David Rowley, James Sewell, Amit Kapila,
and me. Some further hacking by me.
Diffstat (limited to 'src/bin/psql')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index cb8a06d15e4..6d092711e83 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1783,6 +1783,7 @@ psql_completion(const char *text, int start, int end) "autovacuum_vacuum_scale_factor", "autovacuum_vacuum_threshold", "fillfactor", + "parallel_degree", "log_autovacuum_min_duration", "toast.autovacuum_enabled", "toast.autovacuum_freeze_max_age", |
