@@ -105,40 +105,40 @@ describe('JsonResult', () => {
105
105
106
106
expect ( result . getValue ( ) ) . to . be . deep . eq ( [
107
107
{
108
- str : 'a' ,
109
- int64 : 282578800148737 ,
110
- bin : Buffer . from ( [ 1 ] ) ,
111
- bool : true ,
112
- char : 'c' ,
113
- dbl : 1.2 ,
114
- flt : 2.2 ,
115
- int : 1 ,
116
- small_int : 3 ,
117
- tiny_int : 5 ,
118
- varch : 'e' ,
119
- dec : 2.1 ,
120
- ts : '2020-01-17 00:17:13.0' ,
121
- date : '2020-01-17' ,
122
- day_interval : '1 00:00:00.000000000' ,
123
- month_interval : '0-1' ,
108
+ 'table. str' : 'a' ,
109
+ 'table. int64' : 282578800148737 ,
110
+ 'table. bin' : Buffer . from ( [ 1 ] ) ,
111
+ 'table. bool' : true ,
112
+ 'table. char' : 'c' ,
113
+ 'table. dbl' : 1.2 ,
114
+ 'table. flt' : 2.2 ,
115
+ 'table. int' : 1 ,
116
+ 'table. small_int' : 3 ,
117
+ 'table. tiny_int' : 5 ,
118
+ 'table. varch' : 'e' ,
119
+ 'table. dec' : 2.1 ,
120
+ 'table.ts' : '2020-01-17 00:17:13.0' ,
121
+ 'table. date' : '2020-01-17' ,
122
+ 'table. day_interval' : '1 00:00:00.000000000' ,
123
+ 'table. month_interval' : '0-1' ,
124
124
} ,
125
125
{
126
- str : 'b' ,
127
- int64 : 565157600297474 ,
128
- bin : Buffer . from ( [ 2 ] ) ,
129
- bool : false ,
130
- char : 'd' ,
131
- dbl : 1.3 ,
132
- flt : 2.3 ,
133
- int : 2 ,
134
- small_int : 4 ,
135
- tiny_int : 6 ,
136
- varch : 'f' ,
137
- dec : 2.2 ,
138
- ts : '2020-01-17 00:17:13.0' ,
139
- date : '2020-01-17' ,
140
- day_interval : '1 00:00:00.000000000' ,
141
- month_interval : '0-1' ,
126
+ 'table. str' : 'b' ,
127
+ 'table. int64' : 565157600297474 ,
128
+ 'table. bin' : Buffer . from ( [ 2 ] ) ,
129
+ 'table. bool' : false ,
130
+ 'table. char' : 'd' ,
131
+ 'table. dbl' : 1.3 ,
132
+ 'table. flt' : 2.3 ,
133
+ 'table. int' : 2 ,
134
+ 'table. small_int' : 4 ,
135
+ 'table. tiny_int' : 6 ,
136
+ 'table. varch' : 'f' ,
137
+ 'table. dec' : 2.2 ,
138
+ 'table.ts' : '2020-01-17 00:17:13.0' ,
139
+ 'table. date' : '2020-01-17' ,
140
+ 'table. day_interval' : '1 00:00:00.000000000' ,
141
+ 'table. month_interval' : '0-1' ,
142
142
} ,
143
143
] ) ;
144
144
} ) ;
@@ -175,16 +175,16 @@ describe('JsonResult', () => {
175
175
176
176
expect ( result . getValue ( ) ) . to . be . deep . eq ( [
177
177
{
178
- array : [ 'a' , 'b' ] ,
179
- map : { key : 12 } ,
180
- struct : { name : 'Jon' , surname : 'Doe' } ,
181
- union : '{0:12}' ,
178
+ 'table. array' : [ 'a' , 'b' ] ,
179
+ 'table. map' : { key : 12 } ,
180
+ 'table. struct' : { name : 'Jon' , surname : 'Doe' } ,
181
+ 'table. union' : '{0:12}' ,
182
182
} ,
183
183
{
184
- array : [ 'c' , 'd' ] ,
185
- map : { key : 13 } ,
186
- struct : { name : 'Jane' , surname : 'Doe' } ,
187
- union : '{1:"foo"}' ,
184
+ 'table. array' : [ 'c' , 'd' ] ,
185
+ 'table. map' : { key : 13 } ,
186
+ 'table. struct' : { name : 'Jane' , surname : 'Doe' } ,
187
+ 'table. union' : '{1:"foo"}' ,
188
188
} ,
189
189
] ) ;
190
190
} ) ;
@@ -212,7 +212,12 @@ describe('JsonResult', () => {
212
212
213
213
const result = new JsonResult ( schema , data ) ;
214
214
215
- expect ( result . getValue ( ) ) . to . be . deep . eq ( [ { id : '0' } , { id : '1' } , { id : '2' } , { id : '3' } ] ) ;
215
+ expect ( result . getValue ( ) ) . to . be . deep . eq ( [
216
+ { 'table.id' : '0' } ,
217
+ { 'table.id' : '1' } ,
218
+ { 'table.id' : '2' } ,
219
+ { 'table.id' : '3' } ,
220
+ ] ) ;
216
221
} ) ;
217
222
218
223
it ( 'should detect nulls' , ( ) => {
@@ -332,22 +337,22 @@ describe('JsonResult', () => {
332
337
333
338
expect ( result . getValue ( ) ) . to . be . deep . eq ( [
334
339
{
335
- str : null ,
336
- int64 : null ,
337
- bin : null ,
338
- bool : null ,
339
- char : null ,
340
- dbl : null ,
341
- flt : null ,
342
- int : null ,
343
- small_int : null ,
344
- tiny_int : null ,
345
- varch : null ,
346
- dec : null ,
347
- ts : null ,
348
- date : null ,
349
- day_interval : null ,
350
- month_interval : null ,
340
+ 'table. str' : null ,
341
+ 'table. int64' : null ,
342
+ 'table. bin' : null ,
343
+ 'table. bool' : null ,
344
+ 'table. char' : null ,
345
+ 'table. dbl' : null ,
346
+ 'table. flt' : null ,
347
+ 'table. int' : null ,
348
+ 'table. small_int' : null ,
349
+ 'table. tiny_int' : null ,
350
+ 'table. varch' : null ,
351
+ 'table. dec' : null ,
352
+ 'table.ts' : null ,
353
+ 'table. date' : null ,
354
+ 'table. day_interval' : null ,
355
+ 'table. month_interval' : null ,
351
356
} ,
352
357
] ) ;
353
358
} ) ;
0 commit comments