We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37e958f commit b98994aCopy full SHA for b98994a
lib/query.js
@@ -37,7 +37,6 @@ p.submit = function(connection) {
37
var names = [];
38
var rows = [];
39
var handleRowDescription = function(msg) {
40
- console.log(JSON.stringify(msg));
41
for(var i = 0; i < msg.fields.length; i++) {
42
converters[i] = dataTypeParsers[msg.fields[i].dataTypeID] || noParse;
43
names[i] = msg.fields[i].name;
@@ -48,7 +47,6 @@ p.submit = function(connection) {
48
47
49
var rawValue = msg.fields[i];
50
result[names[i]] = rawValue === null ? null : converters[i](rawValue);
51
- console.log(names[i] + ": " + result[names[i]]);
52
}
53
self.emit('row', result);
54
0 commit comments