aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2007-09-29 00:14:40 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2007-09-29 00:14:40 +0000
commitb37e1770c55db8c9ad71fcf924999cb10c166782 (patch)
tree07bab7881ee25ba2a2a3774d44891cfecff148fa
parentd5459671a33c6a663c0912691f731f2059eee315 (diff)
downloadpostgresql-b37e1770c55db8c9ad71fcf924999cb10c166782.tar.gz
postgresql-b37e1770c55db8c9ad71fcf924999cb10c166782.zip
Make use of additional chklocale.c entries to reject locales that we
cannot support.
-rw-r--r--src/bin/initdb/initdb.c15
1 files changed, 14 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c
index 1216bbd67c5..6f51eb13677 100644
--- a/src/bin/initdb/initdb.c
+++ b/src/bin/initdb/initdb.c
@@ -42,7 +42,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
*
- * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.143 2007/09/28 22:25:49 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.144 2007/09/29 00:14:40 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -2800,6 +2800,7 @@ main(int argc, char *argv[])
!(pg_strcasecmp(lc_ctype, "C") == 0 ||
pg_strcasecmp(lc_ctype, "POSIX") == 0))
{
+ /* Hmm, couldn't recognize the locale's codeset */
fprintf(stderr, _("%s: could not find suitable encoding for locale \"%s\"\n"),
progname, lc_ctype);
fprintf(stderr, _("Rerun %s with the -E option.\n"), progname);
@@ -2807,6 +2808,18 @@ main(int argc, char *argv[])
progname);
exit(1);
}
+ else if (!PG_VALID_BE_ENCODING(ctype_enc))
+ {
+ /* We recognized it, but it's not a legal server encoding */
+ fprintf(stderr,
+ _("%s: locale %s requires unsupported encoding %s\n"),
+ progname, lc_ctype, pg_encoding_to_char(ctype_enc));
+ fprintf(stderr,
+ _("Encoding %s is not allowed as a server-side encoding.\n"
+ "Rerun %s with a different locale selection.\n"),
+ pg_encoding_to_char(ctype_enc), progname);
+ exit(1);
+ }
else
{
encodingid = encodingid_to_string(ctype_enc);