pgsql: Inhibit mingw CRT's auto-globbing of command line arguments

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Inhibit mingw CRT's auto-globbing of command line arguments
Date: 2022-04-25 19:53:02
Message-ID: E1nj4la-0016p3-3e@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Inhibit mingw CRT's auto-globbing of command line arguments

For some reason by default the mingw C Runtime takes it upon itself to
expand program arguments that look like shell globbing characters. That
has caused much scratching of heads and mis-attribution of the causes of
some TAP test failures, so stop doing that.

This removes an inconsistency with Windows binaries built with MSVC,
which have no such behaviour.

Per suggestion from Noah Misch.

Backpatch to all live branches.

Discussion: https://postgr.es/m/20220423025927.GA1274057@rfd.leadboat.com

Branch
------
REL_13_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/d9cede2c3bfd0739acf294e4e83b36ea9de36b83

Modified Files
--------------
src/common/exec.c | 5 +++++
1 file changed, 5 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2022-04-26 04:41:23 pgsql: Add some isolation tests for CLUSTER
Previous Message Andrew Dunstan 2022-04-25 18:57:12 Re: pgsql: Allow db.schema.table patterns, but complain about random garbag