Thread: pgsql: Avoid accidental wildcard expansion in msys shell

pgsql: Avoid accidental wildcard expansion in msys shell

From
Andrew Dunstan
Date:
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(-)