]> granicus.if.org Git - postgresql/commitdiff
Allow spaces in connection strings in SSL tests
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 25 Jan 2018 14:14:24 +0000 (09:14 -0500)
committerPeter Eisentraut <peter_e@gmx.net>
Thu, 25 Jan 2018 14:14:24 +0000 (09:14 -0500)
Connection strings can have items with spaces in them, wrapped in
quotes.  The tests however ran a SELECT '$connstr' upon connection which
broke on the embedded quotes.  Use dollar quotes on the connstr to
protect against this.  This was hit during the development of the macOS
Secure Transport patch, but is independent of it.

Author: Daniel Gustafsson <daniel@yesql.se>

src/test/ssl/ServerSetup.pm

index 02f8028b2b6812d6438a09681e739aa60f5d668c..b4d5746e208bcb7a1020f86a2b0901d83215a967 100644 (file)
@@ -42,7 +42,7 @@ sub run_test_psql
        my $logstring = $_[1];
 
        my $cmd = [
-               'psql', '-X', '-A', '-t', '-c', "SELECT 'connected with $connstr'",
+               'psql', '-X', '-A', '-t', '-c', "SELECT \$\$connected with $connstr\$\$",
                '-d', "$connstr" ];
 
        my $result = run_log($cmd);