diff options
| author | Fujii Masao <fujii@postgresql.org> | 2014-11-13 12:14:48 +0900 | 
|---|---|---|
| committer | Fujii Masao <fujii@postgresql.org> | 2014-11-13 12:14:48 +0900 | 
| commit | c291503b1c8250c7ba6ca900b7ba2f85a64b1eb6 (patch) | |
| tree | 8a9718c756942be40d89af6f28bf57a00bbc615b /src/bin/psql/tab-complete.c | |
| parent | 677708032c4a4d37cdb2a4bd45726fc260308db7 (diff) | |
Rename pending_list_cleanup_size to gin_pending_list_limit.
Since this parameter is only for GIN index, it's better to
add "gin" to the parameter name for easier understanding.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
| -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 be6ad7ea643..8c85425fc5d 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1172,7 +1172,7 @@ psql_completion(const char *text, int start, int end)  			 pg_strcasecmp(prev_wd, "(") == 0)  	{  		static const char *const list_INDEXOPTIONS[] = -		{"fillfactor", "fastupdate", "pending_list_cleanup_size", NULL}; +		{"fillfactor", "fastupdate", "gin_pending_list_limit", NULL};  		COMPLETE_WITH_LIST(list_INDEXOPTIONS);  	} | 
