diff options
author | Magnus Hagander | 2014-07-12 12:19:57 +0000 |
---|---|---|
committer | Magnus Hagander | 2014-07-12 12:21:44 +0000 |
commit | 77b55869475e1f7dc77d484b7ea5b109e919a818 (patch) | |
tree | 5551cd553210a5669817d9e88750a185b2de6ae8 | |
parent | a81fbcfb33b44e6a0d189f771108677260621753 (diff) |
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.
-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 ecc49fae622..37be27aaede 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -1231,7 +1231,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); } |