diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-09-27 12:53:57 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-09-27 12:53:57 +0900 |
commit | 268c4e9d4d88f5b4baca88ef31e914a1ac1fb7e9 (patch) | |
tree | 987e8f14069a16e11cedf8d63c103f35515365ea | |
parent | fb341a7db9ba03f365bd02dc47123fbad6cc3761 (diff) | |
download | postgresql-268c4e9d4d88f5b4baca88ef31e914a1ac1fb7e9.tar.gz postgresql-268c4e9d4d88f5b4baca88ef31e914a1ac1fb7e9.zip |
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
-rw-r--r-- | src/bin/psql/tab-complete.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index d6e938f115e..6d9c67891b8 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -2885,9 +2885,9 @@ psql_completion(const char *text, int start, int end) * one word, so the above test is correct. */ if (ends_with(prev_wd, '(') || ends_with(prev_wd, ',')) - COMPLETE_WITH("ANALYZE", "VERBOSE", "COSTS", "BUFFERS", - "TIMING", "SUMMARY", "FORMAT"); - else if (TailMatches("ANALYZE|VERBOSE|COSTS|BUFFERS|TIMING|SUMMARY")) + COMPLETE_WITH("ANALYZE", "VERBOSE", "COSTS", "SETTINGS", + "BUFFERS", "TIMING", "SUMMARY", "FORMAT"); + else if (TailMatches("ANALYZE|VERBOSE|COSTS|SETTINGS|BUFFERS|TIMING|SUMMARY")) COMPLETE_WITH("ON", "OFF"); else if (TailMatches("FORMAT")) COMPLETE_WITH("TEXT", "XML", "JSON", "YAML"); |