We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 797adaf commit a1333ecCopy full SHA for a1333ec
src/bin/pg_basebackup/t/040_pg_createsubscriber.pl
@@ -30,8 +30,9 @@ sub generate_db
30
31
$dbname .= $suffix;
32
33
- # Old IPC::Run mis-quotes command line arguments containing '"' on Windows
34
- $dbname =~ tr/\"//d if ($windows_os);
+ # On Windows, older IPC::Run versions can mis-quote command line arguments
+ # containing double quote or backslash
35
+ $dbname =~ tr/\"\\//d if ($windows_os);
36
37
$node->command_ok(
38
[ 'createdb', $dbname ],
0 commit comments