Fix 'undefined is not a function' problem at postgres adapter
This commit is contained in:
parent
6be57cf454
commit
f16d0573c5
|
@ -46,7 +46,7 @@ PG.prototype.query = function (sql, callback) {
|
|||
var time = Date.now();
|
||||
var log = this.log;
|
||||
this.client.query(sql, function (err, data) {
|
||||
log(sql, time);
|
||||
if (log) log(sql, time);
|
||||
callback(err, data ? data.rows : null);
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue