red-arrow 4.0.1 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +10 -0
- data/README.md +23 -0
- data/ext/arrow/arrow.cpp +3 -0
- data/ext/arrow/converters.cpp +5 -0
- data/ext/arrow/converters.hpp +126 -0
- data/ext/arrow/extconf.rb +13 -0
- data/ext/arrow/memory-view.cpp +311 -0
- data/ext/arrow/memory-view.hpp +26 -0
- data/ext/arrow/raw-records.cpp +1 -0
- data/ext/arrow/values.cpp +1 -0
- data/lib/arrow/aggregate-node-options.rb +35 -0
- data/lib/arrow/aggregation.rb +46 -0
- data/lib/arrow/array-builder.rb +5 -0
- data/lib/arrow/array.rb +12 -0
- data/lib/arrow/binary-dictionary-array-builder.rb +27 -0
- data/lib/arrow/buffer.rb +10 -6
- data/lib/arrow/column-containable.rb +100 -1
- data/lib/arrow/constructor-arguments-gc-guardable.rb +25 -0
- data/lib/arrow/datum.rb +102 -0
- data/lib/arrow/equal-options.rb +38 -0
- data/lib/arrow/expression.rb +48 -0
- data/lib/arrow/file-system.rb +34 -0
- data/lib/arrow/function.rb +52 -0
- data/lib/arrow/group.rb +116 -124
- data/lib/arrow/loader.rb +58 -0
- data/lib/arrow/map-array-builder.rb +109 -0
- data/lib/arrow/map-array.rb +26 -0
- data/lib/arrow/map-data-type.rb +89 -0
- data/lib/arrow/path-extension.rb +1 -1
- data/lib/arrow/record-batch-reader.rb +41 -0
- data/lib/arrow/record-batch.rb +0 -2
- data/lib/arrow/s3-global-options.rb +38 -0
- data/lib/arrow/scalar.rb +32 -0
- data/lib/arrow/slicer.rb +44 -143
- data/lib/arrow/sort-key.rb +61 -55
- data/lib/arrow/sort-options.rb +8 -8
- data/lib/arrow/source-node-options.rb +32 -0
- data/lib/arrow/string-dictionary-array-builder.rb +27 -0
- data/lib/arrow/symbol-values-appendable.rb +34 -0
- data/lib/arrow/table-concatenate-options.rb +36 -0
- data/lib/arrow/table-formatter.rb +141 -17
- data/lib/arrow/table-list-formatter.rb +5 -3
- data/lib/arrow/table-loader.rb +119 -44
- data/lib/arrow/table-saver.rb +36 -5
- data/lib/arrow/table-table-formatter.rb +7 -31
- data/lib/arrow/table.rb +112 -40
- data/lib/arrow/version.rb +1 -1
- data/red-arrow.gemspec +1 -9
- data/test/helper.rb +3 -0
- data/test/raw-records/test-dense-union-array.rb +14 -0
- data/test/raw-records/test-list-array.rb +19 -0
- data/test/raw-records/test-map-array.rb +441 -0
- data/test/raw-records/test-sparse-union-array.rb +14 -0
- data/test/raw-records/test-struct-array.rb +15 -0
- data/test/test-array-builder.rb +7 -0
- data/test/test-array.rb +34 -0
- data/test/test-binary-dictionary-array-builder.rb +103 -0
- data/test/test-boolean-scalar.rb +26 -0
- data/test/test-csv-loader.rb +8 -8
- data/test/test-expression.rb +40 -0
- data/test/test-float-scalar.rb +46 -0
- data/test/test-function.rb +210 -0
- data/test/test-group.rb +75 -51
- data/test/test-map-array-builder.rb +110 -0
- data/test/test-map-array.rb +33 -0
- data/test/test-map-data-type.rb +36 -0
- data/test/test-memory-view.rb +434 -0
- data/test/test-record-batch-reader.rb +46 -0
- data/test/test-record-batch.rb +42 -0
- data/test/test-slicer.rb +166 -167
- data/test/test-string-dictionary-array-builder.rb +103 -0
- data/test/test-table.rb +376 -56
- data/test/values/test-dense-union-array.rb +14 -0
- data/test/values/test-list-array.rb +17 -0
- data/test/values/test-map-array.rb +433 -0
- data/test/values/test-sparse-union-array.rb +14 -0
- data/test/values/test-struct-array.rb +15 -0
- metadata +117 -168
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: red-arrow
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.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:
|
11
|
+
date: 2022-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bigdecimal
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.
|
47
|
+
version: 3.5.0
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.
|
54
|
+
version: 3.5.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: native-package-installer
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -80,104 +80,6 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
- !ruby/object:Gem::Dependency
|
84
|
-
name: benchmark-driver
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
86
|
-
requirements:
|
87
|
-
- - ">="
|
88
|
-
- !ruby/object:Gem::Version
|
89
|
-
version: '0'
|
90
|
-
type: :development
|
91
|
-
prerelease: false
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
93
|
-
requirements:
|
94
|
-
- - ">="
|
95
|
-
- !ruby/object:Gem::Version
|
96
|
-
version: '0'
|
97
|
-
- !ruby/object:Gem::Dependency
|
98
|
-
name: bundler
|
99
|
-
requirement: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: '0'
|
104
|
-
type: :development
|
105
|
-
prerelease: false
|
106
|
-
version_requirements: !ruby/object:Gem::Requirement
|
107
|
-
requirements:
|
108
|
-
- - ">="
|
109
|
-
- !ruby/object:Gem::Version
|
110
|
-
version: '0'
|
111
|
-
- !ruby/object:Gem::Dependency
|
112
|
-
name: faker
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
114
|
-
requirements:
|
115
|
-
- - ">="
|
116
|
-
- !ruby/object:Gem::Version
|
117
|
-
version: '0'
|
118
|
-
type: :development
|
119
|
-
prerelease: false
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
requirements:
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: '0'
|
125
|
-
- !ruby/object:Gem::Dependency
|
126
|
-
name: rake
|
127
|
-
requirement: !ruby/object:Gem::Requirement
|
128
|
-
requirements:
|
129
|
-
- - ">="
|
130
|
-
- !ruby/object:Gem::Version
|
131
|
-
version: '0'
|
132
|
-
type: :development
|
133
|
-
prerelease: false
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - ">="
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: '0'
|
139
|
-
- !ruby/object:Gem::Dependency
|
140
|
-
name: redcarpet
|
141
|
-
requirement: !ruby/object:Gem::Requirement
|
142
|
-
requirements:
|
143
|
-
- - ">="
|
144
|
-
- !ruby/object:Gem::Version
|
145
|
-
version: '0'
|
146
|
-
type: :development
|
147
|
-
prerelease: false
|
148
|
-
version_requirements: !ruby/object:Gem::Requirement
|
149
|
-
requirements:
|
150
|
-
- - ">="
|
151
|
-
- !ruby/object:Gem::Version
|
152
|
-
version: '0'
|
153
|
-
- !ruby/object:Gem::Dependency
|
154
|
-
name: test-unit
|
155
|
-
requirement: !ruby/object:Gem::Requirement
|
156
|
-
requirements:
|
157
|
-
- - ">="
|
158
|
-
- !ruby/object:Gem::Version
|
159
|
-
version: '0'
|
160
|
-
type: :development
|
161
|
-
prerelease: false
|
162
|
-
version_requirements: !ruby/object:Gem::Requirement
|
163
|
-
requirements:
|
164
|
-
- - ">="
|
165
|
-
- !ruby/object:Gem::Version
|
166
|
-
version: '0'
|
167
|
-
- !ruby/object:Gem::Dependency
|
168
|
-
name: yard
|
169
|
-
requirement: !ruby/object:Gem::Requirement
|
170
|
-
requirements:
|
171
|
-
- - ">="
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
type: :development
|
175
|
-
prerelease: false
|
176
|
-
version_requirements: !ruby/object:Gem::Requirement
|
177
|
-
requirements:
|
178
|
-
- - ">="
|
179
|
-
- !ruby/object:Gem::Version
|
180
|
-
version: '0'
|
181
83
|
description: Apache Arrow is a common in-memory columnar data store. It's useful to
|
182
84
|
share and process large data.
|
183
85
|
email:
|
@@ -197,20 +99,26 @@ files:
|
|
197
99
|
- ext/arrow/converters.cpp
|
198
100
|
- ext/arrow/converters.hpp
|
199
101
|
- ext/arrow/extconf.rb
|
102
|
+
- ext/arrow/memory-view.cpp
|
103
|
+
- ext/arrow/memory-view.hpp
|
200
104
|
- ext/arrow/raw-records.cpp
|
201
105
|
- ext/arrow/red-arrow.hpp
|
202
106
|
- ext/arrow/values.cpp
|
203
107
|
- image/red-arrow.png
|
204
108
|
- lib/arrow.rb
|
109
|
+
- lib/arrow/aggregate-node-options.rb
|
110
|
+
- lib/arrow/aggregation.rb
|
205
111
|
- lib/arrow/array-builder.rb
|
206
112
|
- lib/arrow/array.rb
|
207
113
|
- lib/arrow/bigdecimal-extension.rb
|
114
|
+
- lib/arrow/binary-dictionary-array-builder.rb
|
208
115
|
- lib/arrow/block-closable.rb
|
209
116
|
- lib/arrow/buffer.rb
|
210
117
|
- lib/arrow/chunked-array.rb
|
211
118
|
- lib/arrow/column-containable.rb
|
212
119
|
- lib/arrow/column.rb
|
213
120
|
- lib/arrow/compression-type.rb
|
121
|
+
- lib/arrow/constructor-arguments-gc-guardable.rb
|
214
122
|
- lib/arrow/csv-loader.rb
|
215
123
|
- lib/arrow/csv-read-options.rb
|
216
124
|
- lib/arrow/data-type.rb
|
@@ -218,6 +126,7 @@ files:
|
|
218
126
|
- lib/arrow/date32-array.rb
|
219
127
|
- lib/arrow/date64-array-builder.rb
|
220
128
|
- lib/arrow/date64-array.rb
|
129
|
+
- lib/arrow/datum.rb
|
221
130
|
- lib/arrow/decimal128-array-builder.rb
|
222
131
|
- lib/arrow/decimal128-array.rb
|
223
132
|
- lib/arrow/decimal128-data-type.rb
|
@@ -229,17 +138,24 @@ files:
|
|
229
138
|
- lib/arrow/dense-union-data-type.rb
|
230
139
|
- lib/arrow/dictionary-array.rb
|
231
140
|
- lib/arrow/dictionary-data-type.rb
|
141
|
+
- lib/arrow/equal-options.rb
|
142
|
+
- lib/arrow/expression.rb
|
232
143
|
- lib/arrow/field-containable.rb
|
233
144
|
- lib/arrow/field.rb
|
234
145
|
- lib/arrow/file-output-stream.rb
|
146
|
+
- lib/arrow/file-system.rb
|
235
147
|
- lib/arrow/fixed-size-binary-array-builder.rb
|
236
148
|
- lib/arrow/fixed-size-binary-array.rb
|
149
|
+
- lib/arrow/function.rb
|
237
150
|
- lib/arrow/generic-filterable.rb
|
238
151
|
- lib/arrow/generic-takeable.rb
|
239
152
|
- lib/arrow/group.rb
|
240
153
|
- lib/arrow/list-array-builder.rb
|
241
154
|
- lib/arrow/list-data-type.rb
|
242
155
|
- lib/arrow/loader.rb
|
156
|
+
- lib/arrow/map-array-builder.rb
|
157
|
+
- lib/arrow/map-array.rb
|
158
|
+
- lib/arrow/map-data-type.rb
|
243
159
|
- lib/arrow/null-array-builder.rb
|
244
160
|
- lib/arrow/null-array.rb
|
245
161
|
- lib/arrow/path-extension.rb
|
@@ -247,19 +163,26 @@ files:
|
|
247
163
|
- lib/arrow/record-batch-builder.rb
|
248
164
|
- lib/arrow/record-batch-file-reader.rb
|
249
165
|
- lib/arrow/record-batch-iterator.rb
|
166
|
+
- lib/arrow/record-batch-reader.rb
|
250
167
|
- lib/arrow/record-batch-stream-reader.rb
|
251
168
|
- lib/arrow/record-batch.rb
|
252
169
|
- lib/arrow/record-containable.rb
|
253
170
|
- lib/arrow/record.rb
|
254
171
|
- lib/arrow/rolling-window.rb
|
172
|
+
- lib/arrow/s3-global-options.rb
|
173
|
+
- lib/arrow/scalar.rb
|
255
174
|
- lib/arrow/schema.rb
|
256
175
|
- lib/arrow/slicer.rb
|
257
176
|
- lib/arrow/sort-key.rb
|
258
177
|
- lib/arrow/sort-options.rb
|
178
|
+
- lib/arrow/source-node-options.rb
|
259
179
|
- lib/arrow/sparse-union-data-type.rb
|
180
|
+
- lib/arrow/string-dictionary-array-builder.rb
|
260
181
|
- lib/arrow/struct-array-builder.rb
|
261
182
|
- lib/arrow/struct-array.rb
|
262
183
|
- lib/arrow/struct-data-type.rb
|
184
|
+
- lib/arrow/symbol-values-appendable.rb
|
185
|
+
- lib/arrow/table-concatenate-options.rb
|
263
186
|
- lib/arrow/table-formatter.rb
|
264
187
|
- lib/arrow/table-list-formatter.rb
|
265
188
|
- lib/arrow/table-loader.rb
|
@@ -295,6 +218,7 @@ files:
|
|
295
218
|
- test/raw-records/test-basic-arrays.rb
|
296
219
|
- test/raw-records/test-dense-union-array.rb
|
297
220
|
- test/raw-records/test-list-array.rb
|
221
|
+
- test/raw-records/test-map-array.rb
|
298
222
|
- test/raw-records/test-multiple-columns.rb
|
299
223
|
- test/raw-records/test-sparse-union-array.rb
|
300
224
|
- test/raw-records/test-struct-array.rb
|
@@ -303,6 +227,8 @@ files:
|
|
303
227
|
- test/test-array-builder.rb
|
304
228
|
- test/test-array.rb
|
305
229
|
- test/test-bigdecimal.rb
|
230
|
+
- test/test-binary-dictionary-array-builder.rb
|
231
|
+
- test/test-boolean-scalar.rb
|
306
232
|
- test/test-buffer.rb
|
307
233
|
- test/test-chunked-array.rb
|
308
234
|
- test/test-column.rb
|
@@ -321,20 +247,28 @@ files:
|
|
321
247
|
- test/test-dense-union-data-type.rb
|
322
248
|
- test/test-dictionary-array.rb
|
323
249
|
- test/test-dictionary-data-type.rb
|
250
|
+
- test/test-expression.rb
|
324
251
|
- test/test-feather.rb
|
325
252
|
- test/test-field.rb
|
326
253
|
- test/test-file-output-stream.rb
|
327
254
|
- test/test-fixed-size-binary-array-builder.rb
|
328
255
|
- test/test-fixed-size-binary-array.rb
|
256
|
+
- test/test-float-scalar.rb
|
257
|
+
- test/test-function.rb
|
329
258
|
- test/test-group.rb
|
330
259
|
- test/test-list-array-builder.rb
|
331
260
|
- test/test-list-array.rb
|
332
261
|
- test/test-list-data-type.rb
|
262
|
+
- test/test-map-array-builder.rb
|
263
|
+
- test/test-map-array.rb
|
264
|
+
- test/test-map-data-type.rb
|
265
|
+
- test/test-memory-view.rb
|
333
266
|
- test/test-null-array.rb
|
334
267
|
- test/test-orc.rb
|
335
268
|
- test/test-record-batch-builder.rb
|
336
269
|
- test/test-record-batch-file-reader.rb
|
337
270
|
- test/test-record-batch-iterator.rb
|
271
|
+
- test/test-record-batch-reader.rb
|
338
272
|
- test/test-record-batch.rb
|
339
273
|
- test/test-rolling-window.rb
|
340
274
|
- test/test-schema.rb
|
@@ -343,6 +277,7 @@ files:
|
|
343
277
|
- test/test-sort-key.rb
|
344
278
|
- test/test-sort-options.rb
|
345
279
|
- test/test-sparse-union-data-type.rb
|
280
|
+
- test/test-string-dictionary-array-builder.rb
|
346
281
|
- test/test-struct-array-builder.rb
|
347
282
|
- test/test-struct-array.rb
|
348
283
|
- test/test-struct-data-type.rb
|
@@ -358,13 +293,14 @@ files:
|
|
358
293
|
- test/values/test-basic-arrays.rb
|
359
294
|
- test/values/test-dense-union-array.rb
|
360
295
|
- test/values/test-list-array.rb
|
296
|
+
- test/values/test-map-array.rb
|
361
297
|
- test/values/test-sparse-union-array.rb
|
362
298
|
- test/values/test-struct-array.rb
|
363
299
|
homepage: https://arrow.apache.org/
|
364
300
|
licenses:
|
365
301
|
- Apache-2.0
|
366
302
|
metadata:
|
367
|
-
msys2_mingw_dependencies: arrow>=
|
303
|
+
msys2_mingw_dependencies: arrow>=7.0.0
|
368
304
|
post_install_message:
|
369
305
|
rdoc_options: []
|
370
306
|
require_paths:
|
@@ -380,88 +316,101 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
380
316
|
- !ruby/object:Gem::Version
|
381
317
|
version: '0'
|
382
318
|
requirements: []
|
383
|
-
rubygems_version: 3.
|
319
|
+
rubygems_version: 3.4.0.dev
|
384
320
|
signing_key:
|
385
321
|
specification_version: 4
|
386
322
|
summary: Red Arrow is the Ruby bindings of Apache Arrow
|
387
323
|
test_files:
|
388
|
-
- test/
|
389
|
-
- test/
|
390
|
-
- test/
|
391
|
-
- test/
|
392
|
-
- test/
|
393
|
-
- test/
|
394
|
-
- test/
|
395
|
-
- test/
|
396
|
-
- test/
|
397
|
-
- test/
|
324
|
+
- test/fixture/TestOrcFile.test1.orc
|
325
|
+
- test/fixture/float-integer.csv
|
326
|
+
- test/fixture/integer-float.csv
|
327
|
+
- test/fixture/null-with-double-quote.csv
|
328
|
+
- test/fixture/null-without-double-quote.csv
|
329
|
+
- test/fixture/with-header-float.csv
|
330
|
+
- test/fixture/with-header.csv
|
331
|
+
- test/fixture/without-header-float.csv
|
332
|
+
- test/fixture/without-header.csv
|
333
|
+
- test/helper/fixture.rb
|
334
|
+
- test/helper/omittable.rb
|
398
335
|
- test/helper.rb
|
399
|
-
- test/test-
|
400
|
-
- test/test-
|
336
|
+
- test/raw-records/test-basic-arrays.rb
|
337
|
+
- test/raw-records/test-dense-union-array.rb
|
338
|
+
- test/raw-records/test-list-array.rb
|
339
|
+
- test/raw-records/test-map-array.rb
|
340
|
+
- test/raw-records/test-multiple-columns.rb
|
341
|
+
- test/raw-records/test-sparse-union-array.rb
|
342
|
+
- test/raw-records/test-struct-array.rb
|
343
|
+
- test/raw-records/test-table.rb
|
401
344
|
- test/run-test.rb
|
402
|
-
- test/test-timestamp-array.rb
|
403
|
-
- test/test-date32-array.rb
|
404
345
|
- test/test-array-builder.rb
|
346
|
+
- test/test-array.rb
|
347
|
+
- test/test-bigdecimal.rb
|
348
|
+
- test/test-binary-dictionary-array-builder.rb
|
349
|
+
- test/test-boolean-scalar.rb
|
350
|
+
- test/test-buffer.rb
|
351
|
+
- test/test-chunked-array.rb
|
352
|
+
- test/test-column.rb
|
353
|
+
- test/test-csv-loader.rb
|
354
|
+
- test/test-data-type.rb
|
355
|
+
- test/test-date32-array.rb
|
405
356
|
- test/test-date64-array.rb
|
406
|
-
- test/test-
|
357
|
+
- test/test-decimal128-array-builder.rb
|
358
|
+
- test/test-decimal128-array.rb
|
407
359
|
- test/test-decimal128-data-type.rb
|
408
|
-
- test/test-
|
409
|
-
- test/test-
|
360
|
+
- test/test-decimal128.rb
|
361
|
+
- test/test-decimal256-array-builder.rb
|
362
|
+
- test/test-decimal256-array.rb
|
363
|
+
- test/test-decimal256-data-type.rb
|
410
364
|
- test/test-decimal256.rb
|
365
|
+
- test/test-dense-union-data-type.rb
|
411
366
|
- test/test-dictionary-array.rb
|
412
|
-
- test/test-
|
413
|
-
- test/test-
|
367
|
+
- test/test-dictionary-data-type.rb
|
368
|
+
- test/test-expression.rb
|
369
|
+
- test/test-feather.rb
|
414
370
|
- test/test-field.rb
|
415
|
-
- test/test-
|
416
|
-
- test/test-
|
417
|
-
- test/test-bigdecimal.rb
|
371
|
+
- test/test-file-output-stream.rb
|
372
|
+
- test/test-fixed-size-binary-array-builder.rb
|
418
373
|
- test/test-fixed-size-binary-array.rb
|
419
|
-
- test/test-
|
420
|
-
- test/test-
|
421
|
-
- test/test-time64-array.rb
|
422
|
-
- test/test-rolling-window.rb
|
423
|
-
- test/test-dictionary-data-type.rb
|
424
|
-
- test/fixture/integer-float.csv
|
425
|
-
- test/fixture/without-header-float.csv
|
426
|
-
- test/fixture/null-with-double-quote.csv
|
427
|
-
- test/fixture/with-header-float.csv
|
428
|
-
- test/fixture/TestOrcFile.test1.orc
|
429
|
-
- test/fixture/null-without-double-quote.csv
|
430
|
-
- test/fixture/without-header.csv
|
431
|
-
- test/fixture/with-header.csv
|
432
|
-
- test/fixture/float-integer.csv
|
433
|
-
- test/test-orc.rb
|
434
|
-
- test/test-null-array.rb
|
435
|
-
- test/test-time32-data-type.rb
|
436
|
-
- test/test-struct-data-type.rb
|
437
|
-
- test/test-sort-indices.rb
|
374
|
+
- test/test-float-scalar.rb
|
375
|
+
- test/test-function.rb
|
438
376
|
- test/test-group.rb
|
439
|
-
- test/test-sort-key.rb
|
440
|
-
- test/test-buffer.rb
|
441
|
-
- test/values/test-struct-array.rb
|
442
|
-
- test/values/test-basic-arrays.rb
|
443
|
-
- test/values/test-list-array.rb
|
444
|
-
- test/values/test-dense-union-array.rb
|
445
|
-
- test/values/test-sparse-union-array.rb
|
446
|
-
- test/test-slicer.rb
|
447
377
|
- test/test-list-array-builder.rb
|
448
|
-
- test/test-
|
378
|
+
- test/test-list-array.rb
|
379
|
+
- test/test-list-data-type.rb
|
380
|
+
- test/test-map-array-builder.rb
|
381
|
+
- test/test-map-array.rb
|
382
|
+
- test/test-map-data-type.rb
|
383
|
+
- test/test-memory-view.rb
|
384
|
+
- test/test-null-array.rb
|
385
|
+
- test/test-orc.rb
|
449
386
|
- test/test-record-batch-builder.rb
|
450
|
-
- test/
|
451
|
-
- test/raw-records/test-table.rb
|
452
|
-
- test/raw-records/test-basic-arrays.rb
|
453
|
-
- test/raw-records/test-list-array.rb
|
454
|
-
- test/raw-records/test-dense-union-array.rb
|
455
|
-
- test/raw-records/test-sparse-union-array.rb
|
456
|
-
- test/raw-records/test-multiple-columns.rb
|
457
|
-
- test/test-array.rb
|
458
|
-
- test/test-file-output-stream.rb
|
387
|
+
- test/test-record-batch-file-reader.rb
|
459
388
|
- test/test-record-batch-iterator.rb
|
460
|
-
- test/test-
|
461
|
-
- test/test-
|
462
|
-
- test/test-
|
389
|
+
- test/test-record-batch-reader.rb
|
390
|
+
- test/test-record-batch.rb
|
391
|
+
- test/test-rolling-window.rb
|
463
392
|
- test/test-schema.rb
|
393
|
+
- test/test-slicer.rb
|
394
|
+
- test/test-sort-indices.rb
|
395
|
+
- test/test-sort-key.rb
|
396
|
+
- test/test-sort-options.rb
|
397
|
+
- test/test-sparse-union-data-type.rb
|
398
|
+
- test/test-string-dictionary-array-builder.rb
|
464
399
|
- test/test-struct-array-builder.rb
|
465
|
-
- test/
|
466
|
-
- test/
|
400
|
+
- test/test-struct-array.rb
|
401
|
+
- test/test-struct-data-type.rb
|
402
|
+
- test/test-table.rb
|
403
|
+
- test/test-tensor.rb
|
404
|
+
- test/test-time.rb
|
467
405
|
- test/test-time32-array.rb
|
406
|
+
- test/test-time32-data-type.rb
|
407
|
+
- test/test-time64-array.rb
|
408
|
+
- test/test-time64-data-type.rb
|
409
|
+
- test/test-timestamp-array.rb
|
410
|
+
- test/test-timestamp-data-type.rb
|
411
|
+
- test/values/test-basic-arrays.rb
|
412
|
+
- test/values/test-dense-union-array.rb
|
413
|
+
- test/values/test-list-array.rb
|
414
|
+
- test/values/test-map-array.rb
|
415
|
+
- test/values/test-sparse-union-array.rb
|
416
|
+
- test/values/test-struct-array.rb
|