diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2023-02-26 06:48:41 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2023-02-26 06:55:42 -0500 |
commit | ab5b76c07a0e920f106228a5e54043cb5cd298b7 (patch) | |
tree | cb61ef0cbc3885ec7cc2c86841d640ed1b3582c7 /src | |
parent | 1e199c25994791842fe2f80c0809c2e69a3a7d2e (diff) | |
download | postgresql-ab5b76c07a0e920f106228a5e54043cb5cd298b7.tar.gz postgresql-ab5b76c07a0e920f106228a5e54043cb5cd298b7.zip |
Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl
It's been this way for a very long time, but it appears to have been
masking an issue that only manifests with different settings. Therefore,
run the tests in the installation's default encoding/locale.
Backpatch to all live branches.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/vcregress.pl | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index 13fa310d6f1..1d92be80665 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -153,9 +153,7 @@ sub installcheck_internal "--dlpath=.", "--bindir=../../../$Config/psql", "--schedule=${schedule}_schedule", - "--max-concurrent-tests=20", - "--encoding=SQL_ASCII", - "--no-locale"); + "--max-concurrent-tests=20"); push(@args, $maxconn) if $maxconn; push(@args, @EXTRA_REGRESS_OPTS); system(@args); |