mirror of
https://github.com/postgres/postgres.git
synced 2026-03-18 00:22:18 -04: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
c45841f9e1
commit
a70935d3fc
1 changed files with 1 additions and 1 deletions
|
|
@ -1648,7 +1648,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…
Reference in a new issue