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:54:58 -0500 |
commit | 4d68338b26a93f79ad818a462fa96d84ffa2ac51 (patch) | |
tree | d1e26a85ec2c70015ccd41aef9ad2046e94e2959 /src | |
parent | 9eaba06027ae01476a20725e54261e4f64ea023b (diff) | |
download | postgresql-4d68338b26a93f79ad818a462fa96d84ffa2ac51.tar.gz postgresql-4d68338b26a93f79ad818a462fa96d84ffa2ac51.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 2b7efe29e46..c269ad28c9f 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -163,9 +163,7 @@ sub installcheck_internal "--bindir=../../../$Config/psql", "--schedule=${schedule}_schedule", "--max-concurrent-tests=20", - "--make-testtablespace-dir", - "--encoding=SQL_ASCII", - "--no-locale"); + "--make-testtablespace-dir"); push(@args, $maxconn) if $maxconn; push(@args, @EXTRA_REGRESS_OPTS); system(@args); |