On 01/11/2016 02:39 AM, Peter Eisentraut wrote:
The second part is not necessary, because there is already code that completes FDW names after "FOREIGN DATA WRAPPER". So this already works.
Good spot, thanks. I have no idea why I did not think it worked. Maybe it just did not work in 9.2 and I failed when trying to reproduce it on master.
- Also complete RENAME TO in ALTER FOREIGN DATA WRAPPER.
Done.
- Also complete OPTIONS in FOREIGN DATA WRAPPER and SERVER commands.
Done. Andreas
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index c3c77bd..3d8cdf4 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1417,7 +1417,7 @@ psql_completion(const char *text, int start, int end) /* ALTER FOREIGN DATA WRAPPER <name> */ else if (Matches5("ALTER", "FOREIGN", "DATA", "WRAPPER", MatchAny)) - COMPLETE_WITH_LIST4("HANDLER", "VALIDATOR", "OPTIONS", "OWNER TO"); + COMPLETE_WITH_LIST5("HANDLER", "VALIDATOR", "OPTIONS", "OWNER TO", "RENAME TO"); /* ALTER FOREIGN TABLE <name> */ else if (Matches4("ALTER", "FOREIGN", "TABLE", MatchAny)) @@ -1544,7 +1544,10 @@ psql_completion(const char *text, int start, int end) COMPLETE_WITH_LIST3("MINVALUE", "MAXVALUE", "CYCLE"); /* ALTER SERVER <name> */ else if (Matches3("ALTER", "SERVER", MatchAny)) - COMPLETE_WITH_LIST3("VERSION", "OPTIONS", "OWNER TO"); + COMPLETE_WITH_LIST4("VERSION", "OPTIONS", "OWNER TO", "RENAME TO"); + /* ALTER SERVER <name> VERSION <version>*/ + else if (Matches5("ALTER", "SERVER", MatchAny, "VERSION", MatchAny)) + COMPLETE_WITH_CONST("OPTIONS"); /* ALTER SYSTEM SET, RESET, RESET ALL */ else if (Matches2("ALTER", "SYSTEM")) COMPLETE_WITH_LIST2("SET", "RESET"); @@ -1993,7 +1996,7 @@ psql_completion(const char *text, int start, int end) /* CREATE FOREIGN DATA WRAPPER */ else if (Matches5("CREATE", "FOREIGN", "DATA", "WRAPPER", MatchAny)) - COMPLETE_WITH_LIST2("HANDLER", "VALIDATOR"); + COMPLETE_WITH_LIST3("HANDLER", "VALIDATOR", "OPTIONS"); /* CREATE INDEX --- is allowed inside CREATE SCHEMA, so use TailMatches */ /* First off we complete CREATE UNIQUE with "INDEX" */ @@ -2372,6 +2375,10 @@ psql_completion(const char *text, int start, int end) else if (TailMatches3("FOREIGN", "DATA", "WRAPPER") && !TailMatches4("CREATE", MatchAny, MatchAny, MatchAny)) COMPLETE_WITH_QUERY(Query_for_list_of_fdws); + /* applies in CREATE SERVER */ + else if (TailMatches4("FOREIGN", "DATA", "WRAPPER", MatchAny) && + HeadMatches2("CREATE", "SERVER")) + COMPLETE_WITH_CONST("OPTIONS"); /* FOREIGN TABLE */ else if (TailMatches2("FOREIGN", "TABLE") && @@ -2816,6 +2823,8 @@ psql_completion(const char *text, int start, int end) COMPLETE_WITH_QUERY(Query_for_list_of_user_mappings); else if (Matches5("CREATE|ALTER|DROP", "USER", "MAPPING", "FOR", MatchAny)) COMPLETE_WITH_CONST("SERVER"); + else if (Matches7("CREATE|ALTER", "USER", "MAPPING", "FOR", MatchAny, "SERVER", MatchAny)) + COMPLETE_WITH_CONST("OPTIONS"); /* * VACUUM [ FULL | FREEZE ] [ VERBOSE ] [ table ]
-- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers