@@ -18,7 +18,7 @@ var values = [
18
18
[ '-11' , '11' ] ,
19
19
[ '965432100123456789' , '1965432100123456789' ] ,
20
20
[ '-965432100123456789' , '2965432100123456789' ] ,
21
- [ null , null ] ,
21
+ [ null , null ]
22
22
] ;
23
23
24
24
conn . connect ( function ( err ) {
@@ -51,15 +51,7 @@ conn.connect(function(err) {
51
51
{ id : 5 , ls : null , lu : null }
52
52
] ;
53
53
54
- var bigNums_query_bnStringsTrueTrue = [
55
- { id : 1 , ls : 10 , lu : 10 } ,
56
- { id : 2 , ls : - 11 , lu : 11 } ,
57
- { id : 3 , ls : '965432100123456789' , lu : '1965432100123456789' } ,
58
- { id : 4 , ls : '-965432100123456789' , lu : '2965432100123456789' } ,
59
- { id : 5 , ls : '' , lu : '' }
60
- ] ;
61
-
62
- var bigNums_execute_bnStringsTrueTrue = [
54
+ var bigNums_bnStringsTrueTrue = [
63
55
{ id : 1 , ls : 10 , lu : 10 } ,
64
56
{ id : 2 , ls : - 11 , lu : 11 } ,
65
57
{ id : 3 , ls : '965432100123456789' , lu : '1965432100123456789' } ,
@@ -117,9 +109,9 @@ conn.connect(function(err) {
117
109
118
110
testQuery ( false , false , bigNums_bnStringsFalse ) ;
119
111
testQuery ( true , false , bigNums_bnStringsTrueFalse ) ;
120
- testQuery ( true , true , bigNums_query_bnStringsTrueTrue ) ;
112
+ testQuery ( true , true , bigNums_bnStringsTrueTrue ) ;
121
113
122
114
testExecute ( false , false , bigNums_bnStringsFalse ) ;
123
115
testExecute ( true , false , bigNums_bnStringsTrueFalse ) ;
124
- testExecute ( true , true , bigNums_execute_bnStringsTrueTrue ) ;
116
+ testExecute ( true , true , bigNums_bnStringsTrueTrue ) ;
125
117
} ) ;
0 commit comments