Skip to content

Commit 4d68338

Browse files
committed
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.
1 parent 9eaba06 commit 4d68338

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,7 @@ sub installcheck_internal
163163
"--bindir=../../../$Config/psql",
164164
"--schedule=${schedule}_schedule",
165165
"--max-concurrent-tests=20",
166-
"--make-testtablespace-dir",
167-
"--encoding=SQL_ASCII",
168-
"--no-locale");
166+
"--make-testtablespace-dir");
169167
push(@args, $maxconn) if $maxconn;
170168
push(@args, @EXTRA_REGRESS_OPTS);
171169
system(@args);

0 commit comments

Comments
 (0)