Skip to content

Commit

Permalink
Support for logical streaming replication (#1271)
Browse files Browse the repository at this point in the history
* Support for logical streaming replication

* Wrong compare expr in getLibpqConnectionString

* Simplify codes for replication parameter
  • Loading branch information
Kibae Shin authored and brianc committed Apr 24, 2017
1 parent 4505ae9 commit 4f790de
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/client.js
Expand Up @@ -26,6 +26,7 @@ var Client = function(config) {
this.port = this.connectionParameters.port;
this.host = this.connectionParameters.host;
this.password = this.connectionParameters.password;
this.replication = this.connectionParameters.replication;

var c = config || {};

Expand Down Expand Up @@ -222,6 +223,9 @@ Client.prototype.getStartupConf = function() {
if (appName) {
data.application_name = appName;
}
if (params.replication) {
data.replication = '' + params.replication;
}

return data;
};
Expand Down
4 changes: 4 additions & 0 deletions lib/connection-parameters.js
Expand Up @@ -57,6 +57,7 @@ var ConnectionParameters = function(config) {
this.binary = val('binary', config);
this.ssl = typeof config.ssl === 'undefined' ? useSsl() : config.ssl;
this.client_encoding = val("client_encoding", config);
this.replication = val("replication", config);
//a domain socket begins with '/'
this.isDomainSocket = (!(this.host||'').indexOf('/'));

Expand Down Expand Up @@ -88,6 +89,9 @@ ConnectionParameters.prototype.getLibpqConnectionString = function(cb) {
if(this.database) {
params.push("dbname='" + this.database + "'");
}
if(this.replication) {
params.push("replication='" + this.replication + "'");
}
if(this.host) {
params.push("host=" + this.host);
}
Expand Down
3 changes: 3 additions & 0 deletions lib/connection.js
Expand Up @@ -425,6 +425,9 @@ Connection.prototype.parseMessage = function(buffer) {
case 0x48: //H
return this.parseH(buffer, length);

case 0x57: //W
return new Message('replicationStart', length);

case 0x63: //c
return new Message('copyDone', length);

Expand Down

0 comments on commit 4f790de

Please sign in to comment.