mirror of
https://github.com/postgres/postgres.git
synced 2026-03-02 05:13:42 -05:00
psql: Add tab completion for ALTER COLLATION / REFRESH VERSION
This was forgotten when this command form was added
(eccfef81e1).
This commit is contained in:
parent
54637508f8
commit
fefce9ef98
1 changed files with 1 additions and 1 deletions
|
|
@ -1746,7 +1746,7 @@ psql_completion(const char *text, int start, int end)
|
|||
|
||||
/* ALTER COLLATION <name> */
|
||||
else if (Matches("ALTER", "COLLATION", MatchAny))
|
||||
COMPLETE_WITH("OWNER TO", "RENAME TO", "SET SCHEMA");
|
||||
COMPLETE_WITH("OWNER TO", "REFRESH VERSION", "RENAME TO", "SET SCHEMA");
|
||||
|
||||
/* ALTER CONVERSION <name> */
|
||||
else if (Matches("ALTER", "CONVERSION", MatchAny))
|
||||
|
|
|
|||
Loading…
Reference in a new issue