Skip to content

Commit 9e1e9d6

Browse files
committed
Add missed case for tab completion of GRANT/REVOKE MAINTAIN.
We failed to offer "ON" after "GRANT MAINTAIN". Oversight in commit 60684dd. Ken Kato Discussion: https://postgr.es/m/6afe7712991882a864d6d10003264e7c@oss.nttdata.com
1 parent 0b5d1fb commit 9e1e9d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/psql/tab-complete.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3902,7 +3902,7 @@ psql_completion(const char *text, int start, int end)
39023902
else if (TailMatches("GRANT|REVOKE", MatchAny) ||
39033903
TailMatches("REVOKE", "GRANT", "OPTION", "FOR", MatchAny))
39043904
{
3905-
if (TailMatches("SELECT|INSERT|UPDATE|DELETE|TRUNCATE|REFERENCES|TRIGGER|CREATE|CONNECT|TEMPORARY|TEMP|EXECUTE|USAGE|ALL"))
3905+
if (TailMatches("SELECT|INSERT|UPDATE|DELETE|TRUNCATE|REFERENCES|TRIGGER|CREATE|CONNECT|TEMPORARY|TEMP|EXECUTE|USAGE|MAINTAIN|ALL"))
39063906
COMPLETE_WITH("ON");
39073907
else if (TailMatches("GRANT", MatchAny))
39083908
COMPLETE_WITH("TO");

0 commit comments

Comments
 (0)