Force LC_NUMERIC to C while running TAP tests.
authorTom Lane <[email protected]>
Fri, 11 Jul 2025 16:49:07 +0000 (12:49 -0400)
committerTom Lane <[email protected]>
Fri, 11 Jul 2025 16:49:07 +0000 (12:49 -0400)
We already forced LC_MESSAGES to C in order to get consistent
message output, but that isn't enough to stabilize messages
that include %f or similar formatting.

I'm a bit surprised that this hasn't come up before.  Perhaps
we ought to back-patch this change, but I'll refrain for now.

Reported-by: Bernd Helmle <[email protected]>
Author: Tom Lane <[email protected]>
Discussion: https://postgr.es/m/6f024eaa7885eddf5e0eb4ba1d095fbc7146519b[email protected]

src/test/perl/PostgreSQL/Test/Utils.pm

index 7d7ca83495f49f3dc58e25baa3d28ea489a60718..85d36a3171e25fe77b201dc298618d303e4c43dd 100644 (file)
@@ -108,6 +108,7 @@ BEGIN
    delete $ENV{LANGUAGE};
    delete $ENV{LC_ALL};
    $ENV{LC_MESSAGES} = 'C';
+   $ENV{LC_NUMERIC} = 'C';
    setlocale(LC_ALL, "");
 
    # This list should be kept in sync with pg_regress.c.