#701 Expose error fields added in PG 9.3.

This commit is contained in:
rpedela 2015-01-10 15:02:18 -07:00
parent fbcf627d7d
commit f4579b7a9c

View File

@ -551,6 +551,11 @@ Connection.prototype.parseE = function(buffer, length) {
msg.internalPosition = fields.p; msg.internalPosition = fields.p;
msg.internalQuery = fields.q; msg.internalQuery = fields.q;
msg.where = fields.W; msg.where = fields.W;
msg.schema = fields.s;
msg.table = fields.t;
msg.column = fields.c;
msg.dataType = fields.d;
msg.constraint = fields.n;
msg.file = fields.F; msg.file = fields.F;
msg.line = fields.L; msg.line = fields.L;
msg.routine = fields.R; msg.routine = fields.R;