Skip to content

Commit eee21dd

Browse files
committed
test array/int8
1 parent 6410a8a commit eee21dd

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

test/unit/client/typed-query-results-tests.js

+13
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,19 @@ test('typed results', function() {
213213
expected :function(val){
214214
assert.deepEqual(val, [-2147483648, -2147483647, 2147483646, 2147483647]);
215215
}
216+
},{
217+
name : 'array/int8',
218+
format : 'text',
219+
dataTypeID: 1016,
220+
actual: '{-9223372036854775808, -9223372036854775807, 9223372036854775806, 9223372036854775807}',
221+
expected :function(val){
222+
assert.deepEqual(val, [
223+
'-9223372036854775808',
224+
'-9223372036854775807',
225+
'9223372036854775806',
226+
'9223372036854775807'
227+
]);
228+
}
216229
},
217230

218231
{

0 commit comments

Comments
 (0)