aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2023-02-26 06:48:41 -0500
committerAndrew Dunstan <andrew@dunslane.net>2023-02-26 06:52:09 -0500
commit11290c89bbe52283186b3bd38f06ae677d99ca9f (patch)
tree7e3e02d5a13f54be6809232492922e02e87f2963 /src
parent904b171a465583b35ba199d38868e9e49fcb8ef4 (diff)
downloadpostgresql-11290c89bbe52283186b3bd38f06ae677d99ca9f.tar.gz
postgresql-11290c89bbe52283186b3bd38f06ae677d99ca9f.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.pl4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl
index adf334d5543..6ddf7f04c80 100644
--- a/src/tools/msvc/vcregress.pl
+++ b/src/tools/msvc/vcregress.pl
@@ -150,9 +150,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);