Upgrade to pg-native 1.2.0 to support rowMode:array

This commit is contained in:
Brian M. Carlson 2014-10-09 21:54:34 -04:00
parent 3867851341
commit 613112ca33
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ var NativeQuery = require('./query');
var Client = module.exports = function(config) {
EventEmitter.call(this);
this.native = new Native(require('pg-types'));
this.native = new Native();
this._queryQueue = [];
this._connected = false;

View File

@ -23,7 +23,7 @@
"nan": "~1.3.0",
"packet-reader": "0.2.0",
"pg-connection-string": "0.1.1",
"pg-native": "1.1.0",
"pg-native": "1.2.0",
"pg-types": "1.4.0",
"pgpass": "0.0.3"
},