diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-09-27 09:21:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-09-27 09:21:26 +0000 |
commit | 4af19a579d4577ce74d5fe26dd5de1d55a0d1ad2 (patch) | |
tree | ac9b5c9d6e0f34c8023eef2fcc4d5d1dfec3857d | |
parent | 87cbcff9e6e3f037c930f55d7aaeff517265e85c (diff) | |
download | postgresql-4af19a579d4577ce74d5fe26dd5de1d55a0d1ad2.tar.gz postgresql-4af19a579d4577ce74d5fe26dd5de1d55a0d1ad2.zip |
The formatting of the display of the locale names assumed that locale names
are not longer than 8 characters. But sometimes they are, and that made
the display quite ugly. So just format them vertically so that everyone
can read them.
-rw-r--r-- | src/bin/initdb/initdb.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index 554a7510104..5d99b7668f8 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -27,7 +27,7 @@ # Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.201 2003/09/07 03:36:03 tgl Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.202 2003/09/27 09:21:26 petere Exp $ # #------------------------------------------------------------------------- @@ -477,8 +477,12 @@ then echo "The database cluster will be initialized with locale `pg_getlocale CTYPE`." else echo "The database cluster will be initialized with locales:" - echo " COLLATE: `pg_getlocale COLLATE`${TAB}CTYPE: `pg_getlocale CTYPE`${TAB}MESSAGES: `pg_getlocale MESSAGES`" - echo " MONETARY: `pg_getlocale MONETARY`${TAB}NUMERIC: `pg_getlocale NUMERIC`${TAB}TIME: `pg_getlocale TIME`" + echo " COLLATE: `pg_getlocale COLLATE`" + echo " CTYPE: `pg_getlocale CTYPE`" + echo " MESSAGES: `pg_getlocale MESSAGES`" + echo " MONETARY: `pg_getlocale MONETARY`" + echo " NUMERIC: `pg_getlocale NUMERIC`" + echo " TIME: `pg_getlocale TIME`" fi echo |