Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Allow "dbname" from connection string to be overridden in PQconnectDBParams
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 25 Nov 2014 15:12:07 +0000 (17:12 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Tue, 25 Nov 2014 15:39:09 +0000 (17:39 +0200)
If the "dbname" attribute in PQconnectDBParams contained a connection string
or URI (and expand_dbname = TRUE), the database name from the connection
string could not be overridden by a subsequent "dbname" keyword in the
array. That was not intentional; all other options can be overridden.
Furthermore, any subsequent "dbname" caused the connection string from the
first dbname value to be processed again, overriding any values for the same
options that were given between the connection string and the second dbname
option.

In the passing, clarify in the docs that only the first dbname option in the
array is parsed as a connection string.

Alex Shulgin. Backpatch to all supported versions.

src/interfaces/libpq/fe-connect.c

index d08705f70e88f1a347220fede9680b57706e6441..f24bb03e84ba550f563c40dfd8aa9ca442fe7a9c 100644 (file)
@@ -4221,9 +4221,9 @@ conninfo_array_parse(const char **keywords, const char **values,
            }
 
            /*
-            * If we are on the dbname parameter, and we have a parsed
-            * conninfo string, copy those parameters across, overriding any
-            * existing previous settings
+            * If we are on the first dbname parameter, and we have a parsed
+            * connection string, copy those parameters across, overriding any
+            * existing previous settings.
             */
            if (strcmp(pname, "dbname") == 0 && str_options)
            {
@@ -4255,6 +4255,12 @@ conninfo_array_parse(const char **keywords, const char **values,
                        }
                    }
                }
+               /*
+                * Forget the parsed connection string, so that any subsequent
+                * dbname parameters will not be expanded.
+                */
+               PQconninfoFree(str_options);
+               str_options = NULL;
            }
            else
            {