We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6d86c5 commit f1d3caeCopy full SHA for f1d3cae
lib/connection-parameters.js
@@ -90,7 +90,7 @@ ConnectionParameters.prototype.getLibpqConnectionString = function(cb) {
90
params.push("dbname='" + this.database + "'");
91
}
92
if(this.replication) {
93
- params.push("replication='" + (this.database === true ? "true" : this.replication) + "'");
+ params.push("replication='" + (this.replication === true ? "true" : this.replication) + "'");
94
95
if(this.host) {
96
params.push("host=" + this.host);
0 commit comments