red-arrow 0.17.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/ext/arrow/converters.hpp +75 -32
  3. data/ext/arrow/extconf.rb +14 -3
  4. data/ext/arrow/raw-records.cpp +3 -1
  5. data/ext/arrow/values.cpp +3 -1
  6. data/lib/arrow/array-builder.rb +11 -6
  7. data/lib/arrow/bigdecimal-extension.rb +5 -1
  8. data/lib/arrow/buffer.rb +28 -0
  9. data/lib/arrow/decimal128-array-builder.rb +21 -25
  10. data/lib/arrow/decimal128-data-type.rb +2 -0
  11. data/lib/arrow/decimal128.rb +18 -0
  12. data/lib/arrow/decimal256-array-builder.rb +61 -0
  13. data/lib/arrow/decimal256-array.rb +25 -0
  14. data/lib/arrow/decimal256-data-type.rb +73 -0
  15. data/lib/arrow/decimal256.rb +60 -0
  16. data/lib/arrow/dictionary-array.rb +24 -0
  17. data/lib/arrow/fixed-size-binary-array-builder.rb +38 -0
  18. data/lib/arrow/fixed-size-binary-array.rb +26 -0
  19. data/lib/arrow/loader.rb +16 -0
  20. data/lib/arrow/raw-table-converter.rb +47 -0
  21. data/lib/arrow/record-batch-iterator.rb +22 -0
  22. data/lib/arrow/record-batch.rb +9 -1
  23. data/lib/arrow/struct-array-builder.rb +13 -7
  24. data/lib/arrow/table-saver.rb +6 -6
  25. data/lib/arrow/table.rb +5 -24
  26. data/lib/arrow/version.rb +1 -1
  27. data/red-arrow.gemspec +1 -0
  28. data/test/raw-records/test-basic-arrays.rb +17 -0
  29. data/test/raw-records/test-dense-union-array.rb +15 -34
  30. data/test/raw-records/test-list-array.rb +20 -0
  31. data/test/raw-records/test-sparse-union-array.rb +15 -33
  32. data/test/raw-records/test-struct-array.rb +15 -0
  33. data/test/test-array.rb +2 -2
  34. data/test/test-bigdecimal.rb +20 -3
  35. data/test/test-buffer.rb +11 -0
  36. data/test/test-decimal128-array-builder.rb +18 -1
  37. data/test/test-decimal128.rb +38 -0
  38. data/test/test-decimal256-array-builder.rb +112 -0
  39. data/test/test-decimal256-array.rb +38 -0
  40. data/test/test-decimal256-data-type.rb +31 -0
  41. data/test/test-decimal256.rb +102 -0
  42. data/test/test-dense-union-data-type.rb +2 -2
  43. data/test/test-dictionary-array.rb +41 -0
  44. data/test/test-feather.rb +1 -1
  45. data/test/test-fixed-size-binary-array-builder.rb +92 -0
  46. data/test/test-fixed-size-binary-array.rb +36 -0
  47. data/test/test-record-batch-iterator.rb +37 -0
  48. data/test/test-record-batch.rb +14 -0
  49. data/test/test-sparse-union-data-type.rb +2 -2
  50. data/test/test-struct-array-builder.rb +16 -12
  51. data/test/test-struct-array.rb +2 -2
  52. data/test/values/test-basic-arrays.rb +11 -0
  53. data/test/values/test-dense-union-array.rb +15 -34
  54. data/test/values/test-list-array.rb +18 -0
  55. data/test/values/test-sparse-union-array.rb +15 -33
  56. data/test/values/test-struct-array.rb +15 -0
  57. metadata +96 -56
@@ -354,6 +354,24 @@ module ValuesListArrayTests
354
354
  assert_equal(values, target.values)
355
355
  end
356
356
 
357
+ def test_decimal256
358
+ values = [
359
+ [
360
+ BigDecimal("92.92"),
361
+ nil,
362
+ BigDecimal("29.29"),
363
+ ],
364
+ nil,
365
+ ]
366
+ target = build({
367
+ type: :decimal256,
368
+ precision: 38,
369
+ scale: 2,
370
+ },
371
+ values)
372
+ assert_equal(values, target.values)
373
+ end
374
+
357
375
  def test_list
358
376
  values = [
359
377
  [
@@ -44,9 +44,7 @@ module ValuesSparseUnionArrayTests
44
44
  sub_record_batch.columns[0].data
45
45
  end
46
46
  values.each do |value|
47
- if value.nil?
48
- type_ids << nil
49
- elsif value.key?("0")
47
+ if value.key?("0")
50
48
  type_ids << type_codes[0]
51
49
  elsif value.key?("1")
52
50
  type_ids << type_codes[1]
@@ -60,7 +58,6 @@ module ValuesSparseUnionArrayTests
60
58
  def test_null
61
59
  values = [
62
60
  {"0" => nil},
63
- nil,
64
61
  ]
65
62
  target = build(:null, values)
66
63
  assert_equal(values, target.values)
@@ -69,7 +66,6 @@ module ValuesSparseUnionArrayTests
69
66
  def test_boolean
70
67
  values = [
71
68
  {"0" => true},
72
- nil,
73
69
  {"1" => nil},
74
70
  ]
75
71
  target = build(:boolean, values)
@@ -79,7 +75,6 @@ module ValuesSparseUnionArrayTests
79
75
  def test_int8
80
76
  values = [
81
77
  {"0" => -(2 ** 7)},
82
- nil,
83
78
  {"1" => nil},
84
79
  ]
85
80
  target = build(:int8, values)
@@ -89,7 +84,6 @@ module ValuesSparseUnionArrayTests
89
84
  def test_uint8
90
85
  values = [
91
86
  {"0" => (2 ** 8) - 1},
92
- nil,
93
87
  {"1" => nil},
94
88
  ]
95
89
  target = build(:uint8, values)
@@ -99,7 +93,6 @@ module ValuesSparseUnionArrayTests
99
93
  def test_int16
100
94
  values = [
101
95
  {"0" => -(2 ** 15)},
102
- nil,
103
96
  {"1" => nil},
104
97
  ]
105
98
  target = build(:int16, values)
@@ -109,7 +102,6 @@ module ValuesSparseUnionArrayTests
109
102
  def test_uint16
110
103
  values = [
111
104
  {"0" => (2 ** 16) - 1},
112
- nil,
113
105
  {"1" => nil},
114
106
  ]
115
107
  target = build(:uint16, values)
@@ -119,7 +111,6 @@ module ValuesSparseUnionArrayTests
119
111
  def test_int32
120
112
  values = [
121
113
  {"0" => -(2 ** 31)},
122
- nil,
123
114
  {"1" => nil},
124
115
  ]
125
116
  target = build(:int32, values)
@@ -129,7 +120,6 @@ module ValuesSparseUnionArrayTests
129
120
  def test_uint32
130
121
  values = [
131
122
  {"0" => (2 ** 32) - 1},
132
- nil,
133
123
  {"1" => nil},
134
124
  ]
135
125
  target = build(:uint32, values)
@@ -139,7 +129,6 @@ module ValuesSparseUnionArrayTests
139
129
  def test_int64
140
130
  values = [
141
131
  {"0" => -(2 ** 63)},
142
- nil,
143
132
  {"1" => nil},
144
133
  ]
145
134
  target = build(:int64, values)
@@ -149,7 +138,6 @@ module ValuesSparseUnionArrayTests
149
138
  def test_uint64
150
139
  values = [
151
140
  {"0" => (2 ** 64) - 1},
152
- nil,
153
141
  {"1" => nil},
154
142
  ]
155
143
  target = build(:uint64, values)
@@ -159,7 +147,6 @@ module ValuesSparseUnionArrayTests
159
147
  def test_float
160
148
  values = [
161
149
  {"0" => -1.0},
162
- nil,
163
150
  {"1" => nil},
164
151
  ]
165
152
  target = build(:float, values)
@@ -169,7 +156,6 @@ module ValuesSparseUnionArrayTests
169
156
  def test_double
170
157
  values = [
171
158
  {"0" => -1.0},
172
- nil,
173
159
  {"1" => nil},
174
160
  ]
175
161
  target = build(:double, values)
@@ -179,7 +165,6 @@ module ValuesSparseUnionArrayTests
179
165
  def test_binary
180
166
  values = [
181
167
  {"0" => "\xff".b},
182
- nil,
183
168
  {"1" => nil},
184
169
  ]
185
170
  target = build(:binary, values)
@@ -189,7 +174,6 @@ module ValuesSparseUnionArrayTests
189
174
  def test_string
190
175
  values = [
191
176
  {"0" => "Ruby"},
192
- nil,
193
177
  {"1" => nil},
194
178
  ]
195
179
  target = build(:string, values)
@@ -199,7 +183,6 @@ module ValuesSparseUnionArrayTests
199
183
  def test_date32
200
184
  values = [
201
185
  {"0" => Date.new(1960, 1, 1)},
202
- nil,
203
186
  {"1" => nil},
204
187
  ]
205
188
  target = build(:date32, values)
@@ -209,7 +192,6 @@ module ValuesSparseUnionArrayTests
209
192
  def test_date64
210
193
  values = [
211
194
  {"0" => DateTime.new(1960, 1, 1, 2, 9, 30)},
212
- nil,
213
195
  {"1" => nil},
214
196
  ]
215
197
  target = build(:date64, values)
@@ -219,7 +201,6 @@ module ValuesSparseUnionArrayTests
219
201
  def test_timestamp_second
220
202
  values = [
221
203
  {"0" => Time.parse("1960-01-01T02:09:30Z")},
222
- nil,
223
204
  {"1" => nil},
224
205
  ]
225
206
  target = build({
@@ -233,7 +214,6 @@ module ValuesSparseUnionArrayTests
233
214
  def test_timestamp_milli
234
215
  values = [
235
216
  {"0" => Time.parse("1960-01-01T02:09:30.123Z")},
236
- nil,
237
217
  {"1" => nil},
238
218
  ]
239
219
  target = build({
@@ -247,7 +227,6 @@ module ValuesSparseUnionArrayTests
247
227
  def test_timestamp_micro
248
228
  values = [
249
229
  {"0" => Time.parse("1960-01-01T02:09:30.123456Z")},
250
- nil,
251
230
  {"1" => nil},
252
231
  ]
253
232
  target = build({
@@ -261,7 +240,6 @@ module ValuesSparseUnionArrayTests
261
240
  def test_timestamp_nano
262
241
  values = [
263
242
  {"0" => Time.parse("1960-01-01T02:09:30.123456789Z")},
264
- nil,
265
243
  {"1" => nil},
266
244
  ]
267
245
  target = build({
@@ -277,7 +255,6 @@ module ValuesSparseUnionArrayTests
277
255
  values = [
278
256
  # 00:10:00
279
257
  {"0" => Arrow::Time.new(unit, 60 * 10)},
280
- nil,
281
258
  {"1" => nil},
282
259
  ]
283
260
  target = build({
@@ -293,7 +270,6 @@ module ValuesSparseUnionArrayTests
293
270
  values = [
294
271
  # 00:10:00.123
295
272
  {"0" => Arrow::Time.new(unit, (60 * 10) * 1000 + 123)},
296
- nil,
297
273
  {"1" => nil},
298
274
  ]
299
275
  target = build({
@@ -309,7 +285,6 @@ module ValuesSparseUnionArrayTests
309
285
  values = [
310
286
  # 00:10:00.123456
311
287
  {"0" => Arrow::Time.new(unit, (60 * 10) * 1_000_000 + 123_456)},
312
- nil,
313
288
  {"1" => nil},
314
289
  ]
315
290
  target = build({
@@ -325,7 +300,6 @@ module ValuesSparseUnionArrayTests
325
300
  values = [
326
301
  # 00:10:00.123456789
327
302
  {"0" => Arrow::Time.new(unit, (60 * 10) * 1_000_000_000 + 123_456_789)},
328
- nil,
329
303
  {"1" => nil},
330
304
  ]
331
305
  target = build({
@@ -339,7 +313,6 @@ module ValuesSparseUnionArrayTests
339
313
  def test_decimal128
340
314
  values = [
341
315
  {"0" => BigDecimal("92.92")},
342
- nil,
343
316
  {"1" => nil},
344
317
  ]
345
318
  target = build({
@@ -351,10 +324,23 @@ module ValuesSparseUnionArrayTests
351
324
  assert_equal(values, target.values)
352
325
  end
353
326
 
327
+ def test_decimal256
328
+ values = [
329
+ {"0" => BigDecimal("92.92")},
330
+ {"1" => nil},
331
+ ]
332
+ target = build({
333
+ type: :decimal256,
334
+ precision: 38,
335
+ scale: 2,
336
+ },
337
+ values)
338
+ assert_equal(values, target.values)
339
+ end
340
+
354
341
  def test_list
355
342
  values = [
356
343
  {"0" => [true, nil, false]},
357
- nil,
358
344
  {"1" => nil},
359
345
  ]
360
346
  target = build({
@@ -371,7 +357,6 @@ module ValuesSparseUnionArrayTests
371
357
  def test_struct
372
358
  values = [
373
359
  {"0" => {"sub_field" => true}},
374
- nil,
375
360
  {"1" => nil},
376
361
  {"0" => {"sub_field" => nil}},
377
362
  ]
@@ -392,7 +377,6 @@ module ValuesSparseUnionArrayTests
392
377
  omit("Need to add support for SparseUnionArrayBuilder")
393
378
  values = [
394
379
  {"0" => {"field1" => true}},
395
- nil,
396
380
  {"1" => nil},
397
381
  {"0" => {"field2" => nil}},
398
382
  ]
@@ -418,7 +402,6 @@ module ValuesSparseUnionArrayTests
418
402
  omit("Need to add support for DenseUnionArrayBuilder")
419
403
  values = [
420
404
  {"0" => {"field1" => true}},
421
- nil,
422
405
  {"1" => nil},
423
406
  {"0" => {"field2" => nil}},
424
407
  ]
@@ -444,7 +427,6 @@ module ValuesSparseUnionArrayTests
444
427
  omit("Need to add support for DictionaryArrayBuilder")
445
428
  values = [
446
429
  {"0" => "Ruby"},
447
- nil,
448
430
  {"1" => nil},
449
431
  {"0" => "GLib"},
450
432
  ]
@@ -326,6 +326,21 @@ module ValuesStructArrayTests
326
326
  assert_equal(values, target.values)
327
327
  end
328
328
 
329
+ def test_decimal256
330
+ values = [
331
+ {"field" => BigDecimal("92.92")},
332
+ nil,
333
+ {"field" => nil},
334
+ ]
335
+ target = build({
336
+ type: :decimal256,
337
+ precision: 38,
338
+ scale: 2,
339
+ },
340
+ values)
341
+ assert_equal(values, target.values)
342
+ end
343
+
329
344
  def test_list
330
345
  values = [
331
346
  {"field" => [true, nil, false]},
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: red-arrow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Arrow Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-20 00:00:00.000000000 Z
11
+ date: 2021-01-25 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bigdecimal
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.3
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.3
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: extpp
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -192,6 +206,7 @@ files:
192
206
  - lib/arrow/array.rb
193
207
  - lib/arrow/bigdecimal-extension.rb
194
208
  - lib/arrow/block-closable.rb
209
+ - lib/arrow/buffer.rb
195
210
  - lib/arrow/chunked-array.rb
196
211
  - lib/arrow/column-containable.rb
197
212
  - lib/arrow/column.rb
@@ -207,11 +222,18 @@ files:
207
222
  - lib/arrow/decimal128-array.rb
208
223
  - lib/arrow/decimal128-data-type.rb
209
224
  - lib/arrow/decimal128.rb
225
+ - lib/arrow/decimal256-array-builder.rb
226
+ - lib/arrow/decimal256-array.rb
227
+ - lib/arrow/decimal256-data-type.rb
228
+ - lib/arrow/decimal256.rb
210
229
  - lib/arrow/dense-union-data-type.rb
230
+ - lib/arrow/dictionary-array.rb
211
231
  - lib/arrow/dictionary-data-type.rb
212
232
  - lib/arrow/field-containable.rb
213
233
  - lib/arrow/field.rb
214
234
  - lib/arrow/file-output-stream.rb
235
+ - lib/arrow/fixed-size-binary-array-builder.rb
236
+ - lib/arrow/fixed-size-binary-array.rb
215
237
  - lib/arrow/generic-filterable.rb
216
238
  - lib/arrow/generic-takeable.rb
217
239
  - lib/arrow/group.rb
@@ -221,8 +243,10 @@ files:
221
243
  - lib/arrow/null-array-builder.rb
222
244
  - lib/arrow/null-array.rb
223
245
  - lib/arrow/path-extension.rb
246
+ - lib/arrow/raw-table-converter.rb
224
247
  - lib/arrow/record-batch-builder.rb
225
248
  - lib/arrow/record-batch-file-reader.rb
249
+ - lib/arrow/record-batch-iterator.rb
226
250
  - lib/arrow/record-batch-stream-reader.rb
227
251
  - lib/arrow/record-batch.rb
228
252
  - lib/arrow/record-containable.rb
@@ -288,11 +312,18 @@ files:
288
312
  - test/test-decimal128-array.rb
289
313
  - test/test-decimal128-data-type.rb
290
314
  - test/test-decimal128.rb
315
+ - test/test-decimal256-array-builder.rb
316
+ - test/test-decimal256-array.rb
317
+ - test/test-decimal256-data-type.rb
318
+ - test/test-decimal256.rb
291
319
  - test/test-dense-union-data-type.rb
320
+ - test/test-dictionary-array.rb
292
321
  - test/test-dictionary-data-type.rb
293
322
  - test/test-feather.rb
294
323
  - test/test-field.rb
295
324
  - test/test-file-output-stream.rb
325
+ - test/test-fixed-size-binary-array-builder.rb
326
+ - test/test-fixed-size-binary-array.rb
296
327
  - test/test-group.rb
297
328
  - test/test-list-array-builder.rb
298
329
  - test/test-list-array.rb
@@ -301,6 +332,7 @@ files:
301
332
  - test/test-orc.rb
302
333
  - test/test-record-batch-builder.rb
303
334
  - test/test-record-batch-file-reader.rb
335
+ - test/test-record-batch-iterator.rb
304
336
  - test/test-record-batch.rb
305
337
  - test/test-rolling-window.rb
306
338
  - test/test-schema.rb
@@ -327,7 +359,7 @@ homepage: https://arrow.apache.org/
327
359
  licenses:
328
360
  - Apache-2.0
329
361
  metadata:
330
- msys2_mingw_dependencies: arrow>=0.17.0
362
+ msys2_mingw_dependencies: arrow>=3.0.0
331
363
  post_install_message:
332
364
  rdoc_options: []
333
365
  require_paths:
@@ -343,77 +375,85 @@ required_rubygems_version: !ruby/object:Gem::Requirement
343
375
  - !ruby/object:Gem::Version
344
376
  version: '0'
345
377
  requirements: []
346
- rubygems_version: 3.1.2
378
+ rubygems_version: 3.2.5
347
379
  signing_key:
348
380
  specification_version: 4
349
381
  summary: Red Arrow is the Ruby bindings of Apache Arrow
350
382
  test_files:
351
- - test/test-orc.rb
352
- - test/test-file-output-stream.rb
383
+ - test/test-decimal256-array-builder.rb
384
+ - test/test-time64-data-type.rb
385
+ - test/test-feather.rb
386
+ - test/test-decimal128.rb
387
+ - test/test-struct-array.rb
388
+ - test/test-data-type.rb
389
+ - test/test-list-data-type.rb
353
390
  - test/test-dense-union-data-type.rb
354
- - test/test-record-batch-builder.rb
391
+ - test/test-decimal256-array.rb
392
+ - test/helper.rb
355
393
  - test/test-record-batch.rb
356
- - test/test-list-data-type.rb
357
- - test/test-decimal128.rb
358
- - test/test-chunked-array.rb
359
- - test/test-array.rb
360
- - test/test-null-array.rb
361
- - test/test-struct-array-builder.rb
362
394
  - test/test-table.rb
395
+ - test/run-test.rb
396
+ - test/test-timestamp-array.rb
397
+ - test/test-date32-array.rb
398
+ - test/test-array-builder.rb
399
+ - test/test-date64-array.rb
400
+ - test/test-record-batch-file-reader.rb
363
401
  - test/test-decimal128-data-type.rb
364
- - test/fixture/TestOrcFile.test1.orc
402
+ - test/test-time.rb
403
+ - test/test-timestamp-data-type.rb
404
+ - test/test-decimal256.rb
405
+ - test/test-dictionary-array.rb
406
+ - test/test-fixed-size-binary-array-builder.rb
407
+ - test/test-column.rb
408
+ - test/test-field.rb
409
+ - test/test-decimal128-array.rb
410
+ - test/test-csv-loader.rb
411
+ - test/test-bigdecimal.rb
412
+ - test/test-fixed-size-binary-array.rb
413
+ - test/test-list-array.rb
414
+ - test/test-decimal256-data-type.rb
415
+ - test/test-time64-array.rb
416
+ - test/test-rolling-window.rb
417
+ - test/test-dictionary-data-type.rb
365
418
  - test/fixture/integer-float.csv
366
- - test/fixture/null-with-double-quote.csv
367
- - test/fixture/with-header.csv
368
- - test/fixture/without-header.csv
369
419
  - test/fixture/without-header-float.csv
420
+ - test/fixture/null-with-double-quote.csv
370
421
  - test/fixture/with-header-float.csv
422
+ - test/fixture/TestOrcFile.test1.orc
371
423
  - test/fixture/null-without-double-quote.csv
424
+ - test/fixture/without-header.csv
425
+ - test/fixture/with-header.csv
372
426
  - test/fixture/float-integer.csv
373
- - test/run-test.rb
427
+ - test/test-orc.rb
428
+ - test/test-null-array.rb
429
+ - test/test-time32-data-type.rb
430
+ - test/test-struct-data-type.rb
374
431
  - test/test-group.rb
375
- - test/helper.rb
376
- - test/test-time64-array.rb
377
- - test/test-csv-loader.rb
378
- - test/test-feather.rb
379
- - test/test-time64-data-type.rb
380
- - test/values/test-sparse-union-array.rb
432
+ - test/test-buffer.rb
433
+ - test/values/test-struct-array.rb
381
434
  - test/values/test-basic-arrays.rb
382
- - test/values/test-dense-union-array.rb
383
435
  - test/values/test-list-array.rb
384
- - test/values/test-struct-array.rb
385
- - test/test-struct-data-type.rb
386
- - test/test-date64-array.rb
387
- - test/raw-records/test-sparse-union-array.rb
388
- - test/raw-records/test-multiple-columns.rb
389
- - test/raw-records/test-basic-arrays.rb
436
+ - test/values/test-dense-union-array.rb
437
+ - test/values/test-sparse-union-array.rb
438
+ - test/test-slicer.rb
439
+ - test/test-list-array-builder.rb
440
+ - test/test-sparse-union-data-type.rb
441
+ - test/test-record-batch-builder.rb
442
+ - test/raw-records/test-struct-array.rb
390
443
  - test/raw-records/test-table.rb
391
- - test/raw-records/test-dense-union-array.rb
444
+ - test/raw-records/test-basic-arrays.rb
392
445
  - test/raw-records/test-list-array.rb
393
- - test/raw-records/test-struct-array.rb
394
- - test/test-list-array.rb
395
- - test/test-timestamp-data-type.rb
396
- - test/test-timestamp-array.rb
397
- - test/test-data-type.rb
398
- - test/test-array-builder.rb
399
- - test/test-time32-data-type.rb
400
- - test/test-record-batch-file-reader.rb
401
- - test/test-rolling-window.rb
402
- - test/test-list-array-builder.rb
403
- - test/test-slicer.rb
446
+ - test/raw-records/test-dense-union-array.rb
447
+ - test/raw-records/test-sparse-union-array.rb
448
+ - test/raw-records/test-multiple-columns.rb
449
+ - test/test-array.rb
450
+ - test/test-file-output-stream.rb
451
+ - test/test-record-batch-iterator.rb
452
+ - test/test-tensor.rb
404
453
  - test/test-decimal128-array-builder.rb
454
+ - test/test-chunked-array.rb
405
455
  - test/test-schema.rb
406
- - test/test-time.rb
407
- - test/test-column.rb
408
- - test/test-bigdecimal.rb
409
- - test/test-sparse-union-data-type.rb
410
- - test/test-tensor.rb
411
- - test/test-time32-array.rb
412
- - test/test-buffer.rb
413
- - test/test-decimal128-array.rb
414
- - test/helper/omittable.rb
456
+ - test/test-struct-array-builder.rb
415
457
  - test/helper/fixture.rb
416
- - test/test-dictionary-data-type.rb
417
- - test/test-date32-array.rb
418
- - test/test-field.rb
419
- - test/test-struct-array.rb
458
+ - test/helper/omittable.rb
459
+ - test/test-time32-array.rb