Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl
authorAndrew Dunstan <[email protected]>
Sun, 26 Feb 2023 11:48:41 +0000 (06:48 -0500)
committerAndrew Dunstan <[email protected]>
Sun, 26 Feb 2023 11:52:09 +0000 (06:52 -0500)
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.

src/tools/msvc/vcregress.pl

index adf334d55436f29bc5867b72a053989a4e7adb99..6ddf7f04c803bcdb3ca766d5937abf776dcd4ac5 100644 (file)
@@ -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);