From: Michael Paquier Date: Mon, 5 Aug 2019 05:30:34 +0000 (+0900) Subject: Fix tab completion for ALTER LANGUAGE in psql X-Git-Tag: REL9_6_15~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dd64a45a7d5982a6e0ef4569f0f16507db93136e;p=postgresql Fix tab completion for ALTER LANGUAGE in psql OWNER_TO was used for the completion, which is not a supported grammar, but OWNER TO is. This error has been introduced by d37b816, so backpatch down to 9.6. Author: Alexander Lakhin Discussion: https://postgr.es/m/7ab243e0-116d-3e44-d120-76b3df7abefd@gmail.com Backpatch-through: 9.6 --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index bc8e35f8ec..272fca1d0b 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1456,7 +1456,7 @@ psql_completion(const char *text, int start, int end) /* ALTER LANGUAGE */ else if (Matches3("ALTER", "LANGUAGE", MatchAny)) - COMPLETE_WITH_LIST2("OWNER_TO", "RENAME TO"); + COMPLETE_WITH_LIST2("OWNER TO", "RENAME TO"); /* ALTER LARGE OBJECT */ else if (Matches4("ALTER", "LARGE", "OBJECT", MatchAny))