Commit 5d1d679d authored by Tom Lane's avatar Tom Lane

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.
parent 6e197cb2
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment