diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-01-27 09:23:50 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-01-27 09:23:50 +0100 |
commit | fefce9ef987ea00cd963f679223fdb9d381b9ec5 (patch) | |
tree | 5795a391cdb5fc8744f70270ce536186887c0c83 /src | |
parent | 54637508f87bd5f07fb9406bac6b08240283be3b (diff) | |
download | postgresql-fefce9ef987ea00cd963f679223fdb9d381b9ec5.tar.gz postgresql-fefce9ef987ea00cd963f679223fdb9d381b9ec5.zip |
psql: Add tab completion for ALTER COLLATION / REFRESH VERSION
This was forgotten when this command form was added
(eccfef81e1f73ee41f1d8bfe4fa4e80576945048).
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/tab-complete.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 502b5c57515..4c62e7b1b41 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -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)) |