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.
pull/1/head
Tom Lane 15 years ago
parent 6e197cb2e5
commit 5d1d679dbf
  1. 2
      src/bin/initdb/initdb.c

@ -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 */

Loading…
Cancel
Save