fixed 'overload' error for NativeQuery constructor
This commit is contained in:
parent
cabca209c7
commit
847d84f82e
@ -131,13 +131,13 @@ var NativeQuery = function(text, values, callback) {
|
|||||||
this.name = text.name;
|
this.name = text.name;
|
||||||
} else {
|
} else {
|
||||||
this.text = text;
|
this.text = text;
|
||||||
this.callback = callback;
|
|
||||||
this.values = values;
|
this.values = values;
|
||||||
}
|
this.callback = callback;
|
||||||
if(typeof values == 'function') {
|
if(typeof values == 'function') {
|
||||||
this.values = null;
|
this.values = null;
|
||||||
this.callback = values;
|
this.callback = values;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if(this.callback) {
|
if(this.callback) {
|
||||||
this.rows = [];
|
this.rows = [];
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
var helper = require(__dirname + '/test-helper');
|
var helper = require(__dirname + '/test-helper');
|
||||||
|
|
||||||
test("noData message handling", function() {
|
test("noData message handling", function() {
|
||||||
return false;
|
|
||||||
var client = helper.client();
|
var client = helper.client();
|
||||||
|
|
||||||
var q = client.query({
|
var q = client.query({
|
||||||
|
Loading…
Reference in New Issue
Block a user