pgsql: Remove collate.linux.utf8.sql's assumptions about ".utf8" in loc

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove collate.linux.utf8.sql's assumptions about ".utf8" in loc
Date: 2011-04-09 20:24:51
Message-ID: E1Q8eiB-0007Qw-8p@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove collate.linux.utf8.sql's assumptions about ".utf8" in locale names.

Tweak the test so that it does not depend on the platform using ".utf8" as
the extension signifying that a locale uses UTF8 encoding. For the most
part this just requires using the abbreviated collation names "en_US" etc,
though I had to work a bit harder on the collation creation tests.

This opens the door to using the test on platforms that spell locales
differently, for example ".utf-8" or ".UTF-8". Also, the test is now
somewhat useful with server encodings other than UTF8; though depending on
which encoding is selected, different subsets of it will fail for lack of
character set support.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/f89e4dfa755b9c9be9c19f7c65cff50d47b4f33a

Modified Files
--------------
src/test/regress/expected/collate.linux.utf8.out | 108 +++++++++++++---------
src/test/regress/sql/collate.linux.utf8.sql | 58 +++++++-----
2 files changed, 99 insertions(+), 67 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message User Achernow 2011-04-09 20:29:35 libpqtypes - libpqtypes: added PQparamDup to duplicate an existing
Previous Message Tom Lane 2011-04-09 18:40:23 pgsql: Adjust collation determination rules as per discussion.