8000 Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl · postgres/postgres@73e779b · GitHub
[go: up one dir, main page]

Skip to content

Commit 73e779b

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 ffec64b commit 73e779b

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
@@ -150,9 +150,7 @@ sub installcheck_internal
150150
"--dlpath=.",
151151
"--bindir=../../../$Config/psql",
152152
"--schedule=${schedule}_schedule",
153-
"--max-concurrent-tests=20",
154-
"--encoding=SQL_ASCII",
155-
"--no-locale");
153+
"--max-concurrent-tests=20");
156154
push(@args, $maxconn) if $maxconn;
157155
push(@args, @EXTRA_REGRESS_OPTS);
158156
system(@args);

0 commit comments

Comments
 (0)
0