diff options
| author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-04-03 11:55:50 -0300 | 
|---|---|---|
| committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-04-03 11:55:50 -0300 | 
| commit | 4ff695b17d32a9c330952192dbc789d31a5e2f5e (patch) | |
| tree | 1e83f651e13c90928d0ba9337b0c15aa69773ed1 /src/bin/psql/tab-complete.c | |
| parent | a75fb9b335db0e063ece283ebd207530abe1b53b (diff) | |
Add log_min_autovacuum_duration per-table option
This is useful to control autovacuum log volume, for situations where
monitoring only a set of tables is necessary.
Author: Michael Paquier
Reviewed by: A team led by Naoya Anzai (also including Akira Kurosawa,
Taiki Kondo, Huong Dangminh), Fujii Masao.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 5a4fd5c8731..38fde39b30b 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1788,6 +1788,7 @@ psql_completion(const char *text, int start, int end)  			"autovacuum_vacuum_scale_factor",  			"autovacuum_vacuum_threshold",  			"fillfactor", +			"log_autovacuum_min_duration",  			"toast.autovacuum_enabled",  			"toast.autovacuum_freeze_max_age",  			"toast.autovacuum_freeze_min_age", @@ -1799,6 +1800,7 @@ psql_completion(const char *text, int start, int end)  			"toast.autovacuum_vacuum_cost_limit",  			"toast.autovacuum_vacuum_scale_factor",  			"toast.autovacuum_vacuum_threshold", +			"toast.log_autovacuum_min_duration",  			"user_catalog_table",  			NULL  		}; | 
