Get the list of encodings from the database cluster.
This commit is contained in:
parent
c5a5033e08
commit
cfb8da6fb2
|
@ -107,6 +107,16 @@ _pgsql_databases () {
|
||||||
compadd "$@" - $( psql $_pgsql_params[@] -Atq -c $_pgsql_db_sql template1 2>/dev/null )
|
compadd "$@" - $( psql $_pgsql_params[@] -Atq -c $_pgsql_db_sql template1 2>/dev/null )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_pgsql_encodings () {
|
||||||
|
local _pgsql_user
|
||||||
|
_pgsql_get_identity
|
||||||
|
|
||||||
|
local _pgsql_db_sql
|
||||||
|
_pgsql_db_sql="select pg_encoding_to_char(i) from generate_series(0,100) i;"
|
||||||
|
|
||||||
|
compadd "$@" - $( psql $_pgsql_params[@] -Atq -c $_pgsql_db_sql template1 )
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
##
|
##
|
||||||
## The actual completion code for the commands
|
## The actual completion code for the commands
|
||||||
|
@ -185,7 +195,7 @@ _createdb () {
|
||||||
{-q,--quiet}'[non verbose mode]' \
|
{-q,--quiet}'[non verbose mode]' \
|
||||||
{-D+,--location=}':database location:_directories' \
|
{-D+,--location=}':database location:_directories' \
|
||||||
{-T+,--template=}':database template:_pgsql_databases' \
|
{-T+,--template=}':database template:_pgsql_databases' \
|
||||||
{-E+,--encoding=}':database encoding:_values "encoding" $_pgsql_encodings[@]' \
|
{-E+,--encoding=}':database encoding:_pgsql_encodings' \
|
||||||
':PostgreSQL database:' \
|
':PostgreSQL database:' \
|
||||||
':comment:'
|
':comment:'
|
||||||
}
|
}
|
||||||
|
@ -222,7 +232,7 @@ _vacuumdb () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_pgsql_utils () {
|
_pgsql_utils () {
|
||||||
local _pgsql_common_opts _pgsql_encodings
|
local _pgsql_common_opts
|
||||||
|
|
||||||
_pgsql_common_opts=(
|
_pgsql_common_opts=(
|
||||||
{-\?,--help}'[display help]'
|
{-\?,--help}'[display help]'
|
||||||
|
@ -232,25 +242,6 @@ _pgsql_utils () {
|
||||||
{-W,--password}'[prompt for password]'
|
{-W,--password}'[prompt for password]'
|
||||||
)
|
)
|
||||||
|
|
||||||
# Taken from
|
|
||||||
# <http://www.postgresql.org/docs/7.4/static/multibyte.html#CHARSET-TABLE>.
|
|
||||||
# It'd be real nice if postgres could tell us these...
|
|
||||||
_pgsql_encodings=(
|
|
||||||
SQL_ASCII
|
|
||||||
EUC_{JP,CN,KR,TW}
|
|
||||||
JOHAB
|
|
||||||
UNICODE
|
|
||||||
MULE_INTERNAL
|
|
||||||
LATIN{1,2,3,4,5,6,7,8,9,10}
|
|
||||||
ISO_8859_{5,6,7,8}
|
|
||||||
KOI8
|
|
||||||
WIN
|
|
||||||
ALT
|
|
||||||
WIN1256
|
|
||||||
TCVN
|
|
||||||
WIN874
|
|
||||||
)
|
|
||||||
|
|
||||||
case "$service" in
|
case "$service" in
|
||||||
psql) _psql "$@" ;;
|
psql) _psql "$@" ;;
|
||||||
pg_dump) _pg_dump "$@" ;;
|
pg_dump) _pg_dump "$@" ;;
|
||||||
|
|
Loading…
Reference in New Issue