Don't force SQL_ASCII/no-locale for installcheck in vcregress.pl
authorAndrew Dunstan
Sun, 26 Feb 2023 11:48:41 +0000 (06:48 -0500)
committerAndrew Dunstan
Sun, 26 Feb 2023 11:54:58 +0000 (06:54 -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 2b7efe29e4619d8678be429b5256332c621bed24..c269ad28c9fab9a995a0ba8351ab982375fba1e7 100644 (file)
@@ -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);