red-arrow 8.0.0 → 24.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (178) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -7
  3. data/ext/arrow/arrow.cpp +67 -0
  4. data/ext/arrow/converters.cpp +10 -0
  5. data/ext/arrow/converters.hpp +310 -46
  6. data/ext/arrow/extconf.rb +41 -22
  7. data/ext/arrow/raw-records.cpp +165 -2
  8. data/ext/arrow/red-arrow.hpp +2 -0
  9. data/ext/arrow/values.cpp +6 -2
  10. data/lib/arrow/array-builder.rb +89 -14
  11. data/{test/test-time32-data-type.rb → lib/arrow/array-computable.rb} +24 -16
  12. data/{test/test-buffer.rb → lib/arrow/array-statistics.rb} +19 -24
  13. data/lib/arrow/array.rb +40 -4
  14. data/lib/arrow/chunked-array.rb +56 -1
  15. data/lib/arrow/column-containable.rb +9 -0
  16. data/lib/arrow/column.rb +49 -4
  17. data/{test/test-tensor.rb → lib/arrow/csv-write-options.rb} +28 -31
  18. data/lib/arrow/data-type.rb +17 -3
  19. data/lib/arrow/decimal128-array-builder.rb +16 -6
  20. data/lib/arrow/decimal128.rb +14 -0
  21. data/lib/arrow/decimal256-array-builder.rb +16 -6
  22. data/lib/arrow/decimal256.rb +14 -0
  23. data/{test/test-float-scalar.rb → lib/arrow/dense-union-array-builder.rb} +27 -24
  24. data/{test/test-boolean-scalar.rb → lib/arrow/dense-union-array.rb} +7 -7
  25. data/lib/arrow/duration-array-builder.rb +27 -0
  26. data/lib/arrow/duration-array.rb +24 -0
  27. data/lib/arrow/duration-data-type.rb +32 -0
  28. data/lib/arrow/expression.rb +6 -2
  29. data/lib/arrow/field-containable.rb +1 -1
  30. data/lib/arrow/field.rb +44 -3
  31. data/lib/arrow/fixed-size-list-array-builder.rb +29 -0
  32. data/lib/arrow/fixed-size-list-data-type.rb +118 -0
  33. data/lib/arrow/function.rb +0 -1
  34. data/lib/arrow/half-float-array-builder.rb +32 -0
  35. data/lib/arrow/half-float-array.rb +24 -0
  36. data/lib/arrow/half-float.rb +118 -0
  37. data/{test/helper/fixture.rb → lib/arrow/input-referable.rb} +7 -6
  38. data/lib/arrow/jruby/array-builder.rb +114 -0
  39. data/lib/arrow/jruby/array.rb +109 -0
  40. data/lib/arrow/jruby/chunked-array.rb +36 -0
  41. data/lib/arrow/jruby/compression-type.rb +26 -0
  42. data/lib/arrow/jruby/csv-read-options.rb +32 -0
  43. data/{test/test-map-data-type.rb → lib/arrow/jruby/data-type.rb} +24 -12
  44. data/lib/arrow/jruby/decimal128.rb +28 -0
  45. data/lib/arrow/jruby/decimal256.rb +28 -0
  46. data/{test/fixture/float-integer.csv → lib/arrow/jruby/error.rb} +7 -4
  47. data/lib/arrow/jruby/file-system.rb +24 -0
  48. data/{test/test-null-array.rb → lib/arrow/jruby/function.rb} +5 -4
  49. data/lib/arrow/jruby/record-batch-iterator.rb +24 -0
  50. data/{test/fixture/null-with-double-quote.csv → lib/arrow/jruby/record-batch.rb} +8 -4
  51. data/{test/fixture/integer-float.csv → lib/arrow/jruby/sort-key.rb} +8 -4
  52. data/lib/arrow/jruby/sort-options.rb +24 -0
  53. data/lib/arrow/jruby/stream-listener-raw.rb +25 -0
  54. data/{test/test-rolling-window.rb → lib/arrow/jruby/table.rb} +19 -19
  55. data/lib/arrow/jruby/writable.rb +24 -0
  56. data/lib/arrow/jruby.rb +52 -0
  57. data/{test/test-date32-array.rb → lib/arrow/large-list-array-builder.rb} +10 -5
  58. data/lib/arrow/large-list-data-type.rb +83 -0
  59. data/lib/arrow/libraries.rb +140 -0
  60. data/lib/arrow/list-array-builder.rb +1 -68
  61. data/lib/arrow/list-data-type.rb +3 -38
  62. data/{test/test-dictionary-array.rb → lib/arrow/list-field-resolvable.rb} +26 -17
  63. data/lib/arrow/list-slice-options.rb +76 -0
  64. data/lib/arrow/list-values-appendable.rb +88 -0
  65. data/lib/arrow/loader.rb +15 -96
  66. data/{test/test-decimal128-array.rb → lib/arrow/make-struct-options.rb} +18 -18
  67. data/lib/arrow/raw-table-converter.rb +10 -3
  68. data/lib/arrow/raw-tensor-converter.rb +89 -0
  69. data/lib/arrow/record-batch-file-reader.rb +2 -0
  70. data/lib/arrow/record-batch-stream-reader.rb +2 -0
  71. data/lib/arrow/record-batch.rb +6 -2
  72. data/{test/fixture/null-without-double-quote.csv → lib/arrow/ruby.rb} +5 -4
  73. data/lib/arrow/scalar.rb +67 -0
  74. data/lib/arrow/slicer.rb +61 -0
  75. data/lib/arrow/sort-key.rb +3 -3
  76. data/lib/arrow/sparse-union-array-builder.rb +56 -0
  77. data/lib/arrow/sparse-union-array.rb +26 -0
  78. data/lib/arrow/stream-decoder.rb +29 -0
  79. data/{test/test-decimal256-data-type.rb → lib/arrow/stream-listener.rb} +25 -9
  80. data/lib/arrow/string-array-builder.rb +30 -0
  81. data/lib/arrow/struct-array-builder.rb +0 -5
  82. data/lib/arrow/table-formatter.rb +38 -8
  83. data/lib/arrow/table-list-formatter.rb +3 -3
  84. data/lib/arrow/table-loader.rb +11 -5
  85. data/lib/arrow/table-saver.rb +4 -3
  86. data/lib/arrow/table-table-formatter.rb +7 -0
  87. data/lib/arrow/table.rb +180 -33
  88. data/lib/arrow/tensor.rb +144 -0
  89. data/lib/arrow/time-unit.rb +31 -0
  90. data/lib/arrow/time32-array-builder.rb +2 -14
  91. data/lib/arrow/time32-data-type.rb +9 -38
  92. data/lib/arrow/time64-array-builder.rb +2 -14
  93. data/lib/arrow/time64-data-type.rb +9 -38
  94. data/lib/arrow/timestamp-array-builder.rb +3 -15
  95. data/lib/arrow/timestamp-data-type.rb +9 -34
  96. data/{test/test-date64-array.rb → lib/arrow/timestamp-parser.rb} +14 -6
  97. data/lib/arrow/union-array-builder.rb +59 -0
  98. data/lib/arrow/union-array.rb +26 -0
  99. data/lib/arrow/version.rb +1 -1
  100. data/lib/arrow.rb +2 -7
  101. data/red-arrow.gemspec +74 -11
  102. metadata +85 -210
  103. data/test/fixture/TestOrcFile.test1.orc +0 -0
  104. data/test/fixture/with-header-float.csv +0 -20
  105. data/test/fixture/with-header.csv +0 -20
  106. data/test/fixture/without-header-float.csv +0 -19
  107. data/test/fixture/without-header.csv +0 -19
  108. data/test/helper/omittable.rb +0 -36
  109. data/test/helper.rb +0 -30
  110. data/test/raw-records/test-basic-arrays.rb +0 -395
  111. data/test/raw-records/test-dense-union-array.rb +0 -521
  112. data/test/raw-records/test-list-array.rb +0 -610
  113. data/test/raw-records/test-map-array.rb +0 -478
  114. data/test/raw-records/test-multiple-columns.rb +0 -65
  115. data/test/raw-records/test-sparse-union-array.rb +0 -511
  116. data/test/raw-records/test-struct-array.rb +0 -515
  117. data/test/raw-records/test-table.rb +0 -47
  118. data/test/run-test.rb +0 -71
  119. data/test/test-array-builder.rb +0 -136
  120. data/test/test-array.rb +0 -325
  121. data/test/test-bigdecimal.rb +0 -40
  122. data/test/test-binary-dictionary-array-builder.rb +0 -103
  123. data/test/test-chunked-array.rb +0 -183
  124. data/test/test-column.rb +0 -92
  125. data/test/test-csv-loader.rb +0 -250
  126. data/test/test-data-type.rb +0 -83
  127. data/test/test-decimal128-array-builder.rb +0 -112
  128. data/test/test-decimal128-data-type.rb +0 -31
  129. data/test/test-decimal128.rb +0 -102
  130. data/test/test-decimal256-array-builder.rb +0 -112
  131. data/test/test-decimal256-array.rb +0 -38
  132. data/test/test-decimal256.rb +0 -102
  133. data/test/test-dense-union-data-type.rb +0 -41
  134. data/test/test-dictionary-data-type.rb +0 -40
  135. data/test/test-expression.rb +0 -40
  136. data/test/test-feather.rb +0 -49
  137. data/test/test-field.rb +0 -91
  138. data/test/test-file-output-stream.rb +0 -54
  139. data/test/test-fixed-size-binary-array-builder.rb +0 -92
  140. data/test/test-fixed-size-binary-array.rb +0 -36
  141. data/test/test-function.rb +0 -210
  142. data/test/test-group.rb +0 -180
  143. data/test/test-list-array-builder.rb +0 -79
  144. data/test/test-list-array.rb +0 -32
  145. data/test/test-list-data-type.rb +0 -69
  146. data/test/test-map-array-builder.rb +0 -110
  147. data/test/test-map-array.rb +0 -33
  148. data/test/test-memory-view.rb +0 -434
  149. data/test/test-orc.rb +0 -173
  150. data/test/test-record-batch-builder.rb +0 -125
  151. data/test/test-record-batch-file-reader.rb +0 -115
  152. data/test/test-record-batch-iterator.rb +0 -37
  153. data/test/test-record-batch-reader.rb +0 -46
  154. data/test/test-record-batch.rb +0 -182
  155. data/test/test-schema.rb +0 -134
  156. data/test/test-slicer.rb +0 -487
  157. data/test/test-sort-indices.rb +0 -40
  158. data/test/test-sort-key.rb +0 -81
  159. data/test/test-sort-options.rb +0 -58
  160. data/test/test-sparse-union-data-type.rb +0 -41
  161. data/test/test-string-dictionary-array-builder.rb +0 -103
  162. data/test/test-struct-array-builder.rb +0 -184
  163. data/test/test-struct-array.rb +0 -94
  164. data/test/test-struct-data-type.rb +0 -112
  165. data/test/test-table.rb +0 -1123
  166. data/test/test-time.rb +0 -288
  167. data/test/test-time32-array.rb +0 -81
  168. data/test/test-time64-array.rb +0 -81
  169. data/test/test-time64-data-type.rb +0 -42
  170. data/test/test-timestamp-array.rb +0 -45
  171. data/test/test-timestamp-data-type.rb +0 -42
  172. data/test/values/test-basic-arrays.rb +0 -325
  173. data/test/values/test-dense-union-array.rb +0 -509
  174. data/test/values/test-dictionary-array.rb +0 -295
  175. data/test/values/test-list-array.rb +0 -571
  176. data/test/values/test-map-array.rb +0 -466
  177. data/test/values/test-sparse-union-array.rb +0 -500
  178. data/test/values/test-struct-array.rb +0 -512
@@ -1,136 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
-
18
- class ArrayBuilderTest < Test::Unit::TestCase
19
- sub_test_case(".build") do
20
- def assert_build(builder_class, raw_array)
21
- array = builder_class.build(raw_array)
22
- assert_equal(raw_array, array.to_a)
23
- end
24
-
25
- sub_test_case("generic builder") do
26
- test("strings") do
27
- assert_build(Arrow::ArrayBuilder,
28
- ["Hello", nil, "World"])
29
- end
30
-
31
- test("symbols") do
32
- array = Arrow::ArrayBuilder.build([:hello, nil, :world])
33
- expected_builder = Arrow::StringDictionaryArrayBuilder.new
34
- assert_equal(expected_builder.build(["hello", nil, "world"]),
35
- array)
36
- end
37
-
38
- test("boolean") do
39
- assert_build(Arrow::ArrayBuilder,
40
- [true, nil, false])
41
- end
42
-
43
- test("positive integers") do
44
- assert_build(Arrow::ArrayBuilder,
45
- [1, nil, 2, nil, 3])
46
- end
47
-
48
- test("negative integers") do
49
- assert_build(Arrow::ArrayBuilder,
50
- [nil, -1, nil, -2, nil, -3])
51
- end
52
-
53
- test("times") do
54
- assert_build(Arrow::ArrayBuilder,
55
- [Time.at(0), Time.at(1), Time.at(2)])
56
- end
57
-
58
- test("dates") do
59
- assert_build(Arrow::ArrayBuilder,
60
- [Date.new(2018, 1, 4), Date.new(2018, 1, 5)])
61
- end
62
-
63
- test("datetimes") do
64
- assert_build(Arrow::ArrayBuilder,
65
- [
66
- DateTime.new(2018, 1, 4, 23, 18, 23),
67
- DateTime.new(2018, 1, 5, 0, 23, 21),
68
- ])
69
- end
70
-
71
- test("list<boolean>s") do
72
- assert_build(Arrow::ArrayBuilder,
73
- [
74
- [nil, true, false],
75
- nil,
76
- [false],
77
- ])
78
- end
79
-
80
- test("list<string>s") do
81
- assert_build(Arrow::ArrayBuilder,
82
- [
83
- ["Hello", "World"],
84
- ["Apache Arrow"],
85
- ])
86
- end
87
- end
88
-
89
- sub_test_case("specific builder") do
90
- test("empty") do
91
- assert_build(Arrow::Int32ArrayBuilder,
92
- [])
93
- end
94
-
95
- test("values") do
96
- assert_build(Arrow::Int32ArrayBuilder,
97
- [1, -2])
98
- end
99
-
100
- test("values, nils") do
101
- assert_build(Arrow::Int32ArrayBuilder,
102
- [1, -2, nil, nil])
103
- end
104
-
105
- test("values, nils, values") do
106
- assert_build(Arrow::Int32ArrayBuilder,
107
- [1, -2, nil, nil, 3, -4])
108
- end
109
-
110
- test("values, nils, values, nils") do
111
- assert_build(Arrow::Int32ArrayBuilder,
112
- [1, -2, nil, nil, 3, -4, nil, nil])
113
- end
114
-
115
- test("nils") do
116
- assert_build(Arrow::Int32ArrayBuilder,
117
- [nil, nil])
118
- end
119
-
120
- test("nils, values") do
121
- assert_build(Arrow::Int32ArrayBuilder,
122
- [nil, nil, 3, -4])
123
- end
124
-
125
- test("nils, values, nil") do
126
- assert_build(Arrow::Int32ArrayBuilder,
127
- [nil, nil, 3, -4, nil, nil])
128
- end
129
-
130
- test("nils, values, nil, values") do
131
- assert_build(Arrow::Int32ArrayBuilder,
132
- [nil, nil, 3, -4, nil, nil, 5, -6])
133
- end
134
- end
135
- end
136
- end
data/test/test-array.rb DELETED
@@ -1,325 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
-
18
- class ArrayTest < Test::Unit::TestCase
19
- sub_test_case(".new") do
20
- test("Boolean") do
21
- array = Arrow::BooleanArray.new([true, false, true])
22
- assert_equal([true, false, true],
23
- array.to_a)
24
- end
25
- end
26
-
27
- sub_test_case("instance methods") do
28
- def setup
29
- @values = [true, false, nil, true]
30
- @array = Arrow::BooleanArray.new(@values)
31
- end
32
-
33
- test("#each") do
34
- assert_equal(@values, @array.to_a)
35
- end
36
-
37
- sub_test_case("#[]") do
38
- test("valid range") do
39
- assert_equal(@values,
40
- @array.length.times.collect {|i| @array[i]})
41
- end
42
-
43
- test("out of range") do
44
- assert_nil(@array[@array.length])
45
- end
46
-
47
- test("negative index") do
48
- assert_equal(@values.last,
49
- @array[-1])
50
- end
51
- end
52
-
53
- sub_test_case("#==") do
54
- test("Arrow::Array") do
55
- assert do
56
- @array == @array
57
- end
58
- end
59
-
60
- test("not Arrow::Array") do
61
- assert do
62
- not (@array == 29)
63
- end
64
- end
65
- end
66
-
67
- sub_test_case("#equal_array?") do
68
- test("no options") do
69
- array1 = Arrow::FloatArray.new([1.1, Float::NAN])
70
- array2 = Arrow::FloatArray.new([1.1, Float::NAN])
71
- assert do
72
- not array1.equal_array?(array2)
73
- end
74
- end
75
-
76
- test("approx") do
77
- array1 = Arrow::FloatArray.new([1.1])
78
- array2 = Arrow::FloatArray.new([1.100001])
79
- assert do
80
- array1.equal_array?(array2, approx: true)
81
- end
82
- end
83
-
84
- test("nans-equal") do
85
- array1 = Arrow::FloatArray.new([1.1, Float::NAN])
86
- array2 = Arrow::FloatArray.new([1.1, Float::NAN])
87
- assert do
88
- array1.equal_array?(array2, nans_equal: true)
89
- end
90
- end
91
-
92
- test("absolute-tolerance") do
93
- array1 = Arrow::FloatArray.new([1.1])
94
- array2 = Arrow::FloatArray.new([1.101])
95
- assert do
96
- array1.equal_array?(array2, approx: true, absolute_tolerance: 0.01)
97
- end
98
- end
99
- end
100
-
101
- sub_test_case("#cast") do
102
- test("Symbol") do
103
- assert_equal(Arrow::Int32Array.new([1, 2, 3]),
104
- Arrow::StringArray.new(["1", "2", "3"]).cast(:int32))
105
- end
106
- end
107
- end
108
-
109
- sub_test_case("#filter") do
110
- def setup
111
- values = [true, false, false, true]
112
- @array = Arrow::BooleanArray.new(values)
113
- @options = Arrow::FilterOptions.new
114
- @options.null_selection_behavior = :emit_null
115
- end
116
-
117
- test("Array: boolean") do
118
- filter = [nil, true, true, false]
119
- filtered_array = Arrow::BooleanArray.new([nil, false, false])
120
- assert_equal(filtered_array,
121
- @array.filter(filter, @options))
122
- end
123
-
124
- test("Arrow::BooleanArray") do
125
- filter = Arrow::BooleanArray.new([nil, true, true, false])
126
- filtered_array = Arrow::BooleanArray.new([nil, false, false])
127
- assert_equal(filtered_array,
128
- @array.filter(filter, @options))
129
- end
130
-
131
- test("Arrow::ChunkedArray") do
132
- chunks = [
133
- Arrow::BooleanArray.new([nil, true]),
134
- Arrow::BooleanArray.new([true, false]),
135
- ]
136
- filter = Arrow::ChunkedArray.new(chunks)
137
- filtered_array = Arrow::BooleanArray.new([nil, false, false])
138
- assert_equal(filtered_array,
139
- @array.filter(filter, @options))
140
- end
141
- end
142
-
143
- sub_test_case("#take") do
144
- def setup
145
- values = [1, 0 ,2]
146
- @array = Arrow::Int16Array.new(values)
147
- end
148
-
149
- test("Arrow: boolean") do
150
- indices = [1, 0, 2]
151
- assert_equal(Arrow::Int16Array.new([0, 1, 2]),
152
- @array.take(indices))
153
- end
154
-
155
- test("Arrow::Array") do
156
- indices = Arrow::Int16Array.new([1, 0, 2])
157
- assert_equal(Arrow::Int16Array.new([0, 1, 2]),
158
- @array.take(indices))
159
- end
160
-
161
- test("Arrow::ChunkedArray") do
162
- taken_chunks = [
163
- Arrow::Int16Array.new([0, 1]),
164
- Arrow::Int16Array.new([2])
165
- ]
166
- taken_chunked_array = Arrow::ChunkedArray.new(taken_chunks)
167
- indices_chunks = [
168
- Arrow::Int16Array.new([1, 0]),
169
- Arrow::Int16Array.new([2])
170
- ]
171
- indices = Arrow::ChunkedArray.new(indices_chunks)
172
- assert_equal(taken_chunked_array,
173
- @array.take(indices))
174
- end
175
- end
176
-
177
- sub_test_case("#is_in") do
178
- def setup
179
- values = [1, 0, 1, 2]
180
- @array = Arrow::Int16Array.new(values)
181
- end
182
-
183
- test("Arrow: Array") do
184
- right = [2, 0]
185
- assert_equal(Arrow::BooleanArray.new([false, true, false, true]),
186
- @array.is_in(right))
187
- end
188
-
189
- test("Arrow::Array") do
190
- right = Arrow::Int16Array.new([2, 0])
191
- assert_equal(Arrow::BooleanArray.new([false, true, false, true]),
192
- @array.is_in(right))
193
- end
194
-
195
- test("Arrow::ChunkedArray") do
196
- chunks = [
197
- Arrow::Int16Array.new([1, 4]),
198
- Arrow::Int16Array.new([0, 3])
199
- ]
200
- right = Arrow::ChunkedArray.new(chunks)
201
- assert_equal(Arrow::BooleanArray.new([true, true, true, false]),
202
- @array.is_in(right))
203
- end
204
- end
205
-
206
- sub_test_case("#concatenate") do
207
- test("Arrow::Array: same") do
208
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,5, 6]),
209
- Arrow::Int32Array.new([1, 2, nil]).
210
- concatenate(Arrow::Int32Array.new([4, 5]),
211
- Arrow::Int32Array.new([6])))
212
- end
213
-
214
- test("Arrow::Array: castable") do
215
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,5, 6]),
216
- Arrow::Int32Array.new([1, 2, nil]).
217
- concatenate(Arrow::Int8Array.new([4, 5]),
218
- Arrow::UInt32Array.new([6])))
219
- end
220
-
221
- test("Arrow::Array: non-castable") do
222
- assert_raise(Arrow::Error::Invalid) do
223
- Arrow::Int32Array.new([1, 2, nil]).
224
- concatenate(Arrow::StringArray.new(["X"]))
225
- end
226
- end
227
-
228
- test("Array") do
229
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,nil, 6]),
230
- Arrow::Int32Array.new([1, 2, nil]).
231
- concatenate([4, nil],
232
- [6]))
233
- end
234
-
235
- test("invalid") do
236
- message = "[array][resolve] can't build int32 array: 4"
237
- assert_raise(ArgumentError.new(message)) do
238
- Arrow::Int32Array.new([1, 2, nil]).
239
- concatenate(4)
240
- end
241
- end
242
- end
243
-
244
- sub_test_case("#+") do
245
- test("Arrow::Array: same") do
246
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,5, 6]),
247
- Arrow::Int32Array.new([1, 2, nil]) +
248
- Arrow::Int32Array.new([4, 5, 6]))
249
- end
250
-
251
- test("Arrow::Array: castable") do
252
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,5, 6]),
253
- Arrow::Int32Array.new([1, 2, nil]) +
254
- Arrow::Int8Array.new([4, 5, 6]))
255
- end
256
-
257
- test("Arrow::Array: non-castable") do
258
- assert_raise(Arrow::Error::Invalid) do
259
- Arrow::Int32Array.new([1, 2, nil]) +
260
- Arrow::StringArray.new(["X"])
261
- end
262
- end
263
-
264
- test("Array") do
265
- assert_equal(Arrow::Int32Array.new([1, 2, nil, 4 ,nil, 6]),
266
- Arrow::Int32Array.new([1, 2, nil]) +
267
- [4, nil, 6])
268
- end
269
-
270
- test("invalid") do
271
- message = "[array][resolve] can't build int32 array: 4"
272
- assert_raise(ArgumentError.new(message)) do
273
- Arrow::Int32Array.new([1, 2, nil]) + 4
274
- end
275
- end
276
- end
277
-
278
- sub_test_case("#resolve") do
279
- test("Arrow::Array: same") do
280
- assert_equal(Arrow::Int32Array.new([1, 2, nil]),
281
- Arrow::Int32Array.new([]).
282
- resolve(Arrow::Int32Array.new([1, 2, nil])))
283
- end
284
-
285
- test("Arrow::Array: castable") do
286
- assert_equal(Arrow::Int32Array.new([1, 2, nil]),
287
- Arrow::Int32Array.new([]).
288
- resolve(Arrow::Int8Array.new([1, 2, nil])))
289
- end
290
-
291
- test("Arrow::Array: non-castable") do
292
- assert_raise(Arrow::Error::Invalid) do
293
- Arrow::Int32Array.new([]) +
294
- Arrow::StringArray.new(["X"])
295
- end
296
- end
297
-
298
- test("Array: non-parametric") do
299
- assert_equal(Arrow::Int32Array.new([1, 2, nil]),
300
- Arrow::Int32Array.new([]).
301
- resolve([1, 2, nil]))
302
- end
303
-
304
- test("Array: parametric") do
305
- list_data_type = Arrow::ListDataType.new(name: "visible", type: :boolean)
306
- list_array = Arrow::ListArray.new(list_data_type, [])
307
- assert_equal(Arrow::ListArray.new(list_data_type,
308
- [
309
- [true, false],
310
- nil,
311
- ]),
312
- list_array.resolve([
313
- [true, false],
314
- nil,
315
- ]))
316
- end
317
-
318
- test("invalid") do
319
- message = "[array][resolve] can't build int32 array: 4"
320
- assert_raise(ArgumentError.new(message)) do
321
- Arrow::Int32Array.new([]).resolve(4)
322
- end
323
- end
324
- end
325
- end
@@ -1,40 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
-
18
- class BigDecimalTest < Test::Unit::TestCase
19
- sub_test_case("#to_arrow") do
20
- def test_128_positive
21
- assert_equal(Arrow::Decimal128.new("0.1e38"),
22
- BigDecimal("0.1e38").to_arrow)
23
- end
24
-
25
- def test_128_negative
26
- assert_equal(Arrow::Decimal128.new("-0.1e38"),
27
- BigDecimal("-0.1e38").to_arrow)
28
- end
29
-
30
- def test_256_positive
31
- assert_equal(Arrow::Decimal256.new("0.1e39"),
32
- BigDecimal("0.1e39").to_arrow)
33
- end
34
-
35
- def test_256_negative
36
- assert_equal(Arrow::Decimal256.new("-0.1e39"),
37
- BigDecimal("-0.1e39").to_arrow)
38
- end
39
- end
40
- end
@@ -1,103 +0,0 @@
1
- # Licensed to the Apache Software Foundation (ASF) under one
2
- # or more contributor license agreements. See the NOTICE file
3
- # distributed with this work for additional information
4
- # regarding copyright ownership. The ASF licenses this file
5
- # to you under the Apache License, Version 2.0 (the
6
- # "License"); you may not use this file except in compliance
7
- # with the License. You may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing,
12
- # software distributed under the License is distributed on an
13
- # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
- # KIND, either express or implied. See the License for the
15
- # specific language governing permissions and limitations
16
- # under the License.
17
-
18
- class BinaryDictionaryArrayBuilderTest < Test::Unit::TestCase
19
- def setup
20
- @builder = Arrow::BinaryDictionaryArrayBuilder.new
21
- end
22
-
23
- sub_test_case("#append_values") do
24
- test("[nil]") do
25
- @builder.append_values([nil])
26
- array = @builder.finish
27
- assert_equal([
28
- [],
29
- [nil],
30
- ],
31
- [
32
- array.dictionary.to_a,
33
- array.indices.to_a,
34
- ])
35
- end
36
-
37
- test("[String]") do
38
- @builder.append_values(["he\xffllo"])
39
- array = @builder.finish
40
- assert_equal([
41
- ["he\xffllo".b],
42
- [0],
43
- ],
44
- [
45
- array.dictionary.to_a,
46
- array.indices.to_a,
47
- ])
48
- end
49
-
50
- test("[Symbol]") do
51
- @builder.append_values([:hello])
52
- array = @builder.finish
53
- assert_equal([
54
- ["hello"],
55
- [0],
56
- ],
57
- [
58
- array.dictionary.to_a,
59
- array.indices.to_a,
60
- ])
61
- end
62
-
63
- test("[nil, String, Symbol]") do
64
- @builder.append_values([
65
- nil,
66
- "He\xffllo",
67
- :world,
68
- "world",
69
- ])
70
- array = @builder.finish
71
- assert_equal([
72
- ["He\xffllo".b, "world"],
73
- [nil, 0, 1, 1],
74
- ],
75
- [
76
- array.dictionary.to_a,
77
- array.indices.to_a,
78
- ])
79
- end
80
-
81
- test("is_valids") do
82
- @builder.append_values([
83
- "He\xffllo",
84
- :world,
85
- :goodbye,
86
- ],
87
- [
88
- true,
89
- false,
90
- true,
91
- ])
92
- array = @builder.finish
93
- assert_equal([
94
- ["He\xffllo".b, "goodbye"],
95
- [0, nil, 1],
96
- ],
97
- [
98
- array.dictionary.to_a,
99
- array.indices.to_a,
100
- ])
101
- end
102
- end
103
- end