Add missing semicolons.

This commit is contained in:
rpedela 2013-07-11 17:23:59 -06:00 committed by Brian Carlson
parent b5e89b2b9a
commit ffe51c20f2

View File

@ -230,7 +230,7 @@ Client.prototype.escapeIdentifier = function(str) {
escaped += '"';
return escaped;
}
};
// Ported from PostgreSQL 9.2.4 source code in src/interfaces/libpq/fe-exec.c
Client.prototype.escapeLiteral = function(str) {
@ -257,7 +257,7 @@ Client.prototype.escapeLiteral = function(str) {
}
return escaped;
}
};
Client.prototype._pulseQueryQueue = function() {
if(this.readyForQuery===true) {