diff options
author | Michael Paquier <michael@paquier.xyz> | 2021-06-13 20:07:39 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2021-06-13 20:07:39 +0900 |
commit | a9e0b3b08fe38d5e31f03ea96859ff5e413d4a38 (patch) | |
tree | bd4cb5232baa80b3d68d679dce84fe381d67b464 /src/test/perl/TestLib.pm | |
parent | f452aaf7d4a96cfcecd6c60ccd294ffe7b8ea088 (diff) | |
download | postgresql-a9e0b3b08fe38d5e31f03ea96859ff5e413d4a38.tar.gz |
Ignore more environment variables in pg_regress.c
This is similar to the work done in 8279f68 for TestLib.pm, where
environment variables set may cause unwanted failures if using a
temporary installation with pg_regress. The list of variables reset is
adjusted in each stable branch depending on what is supported.
Comments are added to remember that the lists in TestLib.pm and
pg_regress.c had better be kept in sync.
Reviewed-by: Álvaro Herrera
Discussion: https://postgr.es/m/YMNR9GYDn+fHlMta@paquier.xyz
Backpatch-through: 9.6
Diffstat (limited to 'src/test/perl/TestLib.pm')
-rw-r--r-- | src/test/perl/TestLib.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/perl/TestLib.pm b/src/test/perl/TestLib.pm index 47d7f31e94..26fbe08d4b 100644 --- a/src/test/perl/TestLib.pm +++ b/src/test/perl/TestLib.pm @@ -104,6 +104,7 @@ BEGIN delete $ENV{LC_ALL}; $ENV{LC_MESSAGES} = 'C'; + # This list should be kept in sync with pg_regress.c. my @envkeys = qw ( PGCHANNELBINDING PGCLIENTENCODING |