mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Add autocompletion of locale keywords for CREATE DATABASE
Adds support for autocomplete of LC_COLLATE and LC_CTYPE to the CREATE DATABASE command in psql.
This commit is contained in:
parent
261f954e7a
commit
2ead596c2a
@ -1722,7 +1722,7 @@ psql_completion(char *text, int start, int end)
|
||||
{
|
||||
static const char *const list_DATABASE[] =
|
||||
{"OWNER", "TEMPLATE", "ENCODING", "TABLESPACE", "CONNECTION LIMIT",
|
||||
NULL};
|
||||
"LC_COLLATE", "LC_CTYPE", NULL};
|
||||
|
||||
COMPLETE_WITH_LIST(list_DATABASE);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user