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.
2 parents aeda9da + 323a2f9 commit b7f81f8Copy full SHA for b7f81f8
lib/connection-parameters.js
@@ -61,7 +61,7 @@ ConnectionParameters.prototype.getLibpqConnectionString = function(cb) {
61
params.push("host=" + this.host);
62
return cb(null, params.join(' '));
63
}
64
- params.push("options=--client_encoding='utf-8'");
+ params.push("client_encoding='utf-8'");
65
dns.lookup(this.host, function(err, address) {
66
if(err) return cb(err, null);
67
params.push("hostaddr=" + address);
0 commit comments