mirror of
https://github.com/postgres/postgres.git
synced 2025-08-05 07:41:25 +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> */
|
/* ALTER COLLATION <name> */
|
||||||
else if (Matches("ALTER", "COLLATION", MatchAny))
|
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> */
|
/* ALTER CONVERSION <name> */
|
||||||
else if (Matches("ALTER", "CONVERSION", MatchAny))
|
else if (Matches("ALTER", "CONVERSION", MatchAny))
|
||||||
|
Reference in New Issue
Block a user