Add tab completion for EXPLAIN (SETTINGS) in psql
Author: Justin Pryzby Reviewed-by: Tatsuro Yamada Discussion: https://postgr.es/m/20190927022051.GC24334@telsasoft.com Backpatch-through: 12
This commit is contained in:
parent
bb0e3ce8eb
commit
4b011cad27
@ -2939,9 +2939,9 @@ psql_completion(const char *text, int start, int end)
|
|||||||
* one word, so the above test is correct.
|
* one word, so the above test is correct.
|
||||||
*/
|
*/
|
||||||
if (ends_with(prev_wd, '(') || ends_with(prev_wd, ','))
|
if (ends_with(prev_wd, '(') || ends_with(prev_wd, ','))
|
||||||
COMPLETE_WITH("ANALYZE", "VERBOSE", "COSTS", "BUFFERS",
|
COMPLETE_WITH("ANALYZE", "VERBOSE", "COSTS", "SETTINGS",
|
||||||
"TIMING", "SUMMARY", "FORMAT");
|
"BUFFERS", "TIMING", "SUMMARY", "FORMAT");
|
||||||
else if (TailMatches("ANALYZE|VERBOSE|COSTS|BUFFERS|TIMING|SUMMARY"))
|
else if (TailMatches("ANALYZE|VERBOSE|COSTS|SETTINGS|BUFFERS|TIMING|SUMMARY"))
|
||||||
COMPLETE_WITH("ON", "OFF");
|
COMPLETE_WITH("ON", "OFF");
|
||||||
else if (TailMatches("FORMAT"))
|
else if (TailMatches("FORMAT"))
|
||||||
COMPLETE_WITH("TEXT", "XML", "JSON", "YAML");
|
COMPLETE_WITH("TEXT", "XML", "JSON", "YAML");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user