You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a postgresql connection string an empty value or a value with spaces in it needs to be surrounded with single quotes - e.g. user=steve password='' dbname=whatever.
If, say, the password is blank then without those quotes user=steve password= dbname=whatever will use "dbname=whatever" as the password and end up connecting to the default database, rather than the expected temporary one.
The text was updated successfully, but these errors were encountered:
wttw
linked a pull request
Nov 14, 2022
that will
close
this issue
In a postgresql connection string an empty value or a value with spaces in it needs to be surrounded with single quotes - e.g.
user=steve password='' dbname=whatever
.If, say, the password is blank then without those quotes
user=steve password= dbname=whatever
will use "dbname=whatever" as the password and end up connecting to the default database, rather than the expected temporary one.The text was updated successfully, but these errors were encountered: