mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03: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:
@ -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))
|
||||
|
Reference in New Issue
Block a user