Make initdb ignore locales for client-only encodings.

While putting such entries into pg_collation is harmless (since backends
will ignore entries that don't match the database encoding), it's also
useless.
This commit is contained in:
Tom Lane 2011-03-22 17:20:50 -04:00
parent 6e197cb2e5
commit 5d1d679dbf
1 changed files with 2 additions and 0 deletions

View File

@ -1638,6 +1638,8 @@ setup_collation(void)
skipped++;
continue; /* error message printed by pg_get_encoding_from_locale() */
}
if (!PG_VALID_BE_ENCODING(enc))
continue; /* ignore locales for client-only encodings */
if (enc == PG_SQL_ASCII)
continue; /* C/POSIX are already in the catalog */