pgsql: Avoid accidental wildcard expansion in msys shell

From: Andrew Dunstan <andrew(at)dunslane(dot)net>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Avoid accidental wildcard expansion in msys shell
Date: 2019-03-03 17:05:42
Message-ID: E1h0UYY-0007x8-DF@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Avoid accidental wildcard expansion in msys shell

Commit f092de05 added a test for pg_dumpall --exclude-database including
the wildcard pattern '*dump*' which matches some files in the source
directory. The test library on msys uses the shell which expands this
and thus the program gets incorrect arguments. This doesn't happen if
the pattern doesn't match any files, so here the pattern is set to
'*dump_test*' which is such a pattern.

Per buildfarm animal jacana.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/78b408a20a5a19486f0ed833466d0de342c7e471

Modified Files
--------------
src/bin/pg_dump/t/002_pg_dump.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2019-03-03 21:57:20 pgsql: Improve performance of index-only scans with many index columns.
Previous Message Dean Rasheed 2019-03-03 11:08:28 pgsql: Further fixing for multi-row VALUES lists for updatable views.