red-arrow 0.16.0 → 0.17.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64b14ef4120f4ab290e8161020902ec2a22631c519d5a133a63ce383610e8545
4
- data.tar.gz: 2f5850520e2dc69568a454cee0d4246909d52f1d49851221b1b9efd3149bc15c
3
+ metadata.gz: ba4a00fdcc27e2e75985b0d0da37eff70530aef9431d5234da72517313ebad55
4
+ data.tar.gz: 50fb004195b273ec5cbf3e9fa7c92fcb3a7755f010e2ddd469d84c7c27a104df
5
5
  SHA512:
6
- metadata.gz: 0e19a4da6182437a51f9dad6212436e70b00881674ee6cd29e2a40910fe711fdef4076c81d2778f3ff9e9dd3f45b573c43e90378244cf08d7550b504ad8b53af
7
- data.tar.gz: 547eb8b31fd59d9c1d5fc1163bb25da70154b797d103d3a01f6fda70dddc0b3c2cdb5391b9006c4510be37b8b75988195f809aaead8c91e7fb68f762cc5313de
6
+ metadata.gz: 0d0e852a7d0ea89c03ac752e779a1bd5b0ec6a81a10b6b457d66857f2dacb5e445dc41f5254e8985f3d7b8ec6328cedea92bd22758b84a7e935278374e51fcd3
7
+ data.tar.gz: 4aa5f3c817f2ef1a475ed7f272f37f495d4f9c66f07a98381a04a6b16ee9b803904f2c0982048003b0bbe6038369d33b3632b6cb437d849d25179b504233e142
data/Rakefile CHANGED
@@ -30,36 +30,44 @@ spec = helper.gemspec
30
30
  release_task = Rake::Task["release"]
31
31
  release_task.prerequisites.replace(["build", "release:rubygem_push"])
32
32
 
33
- def run_extconf(extension_dir, *arguments)
34
- cd(extension_dir) do
35
- ruby("extconf.rb", *arguments)
33
+ def run_extconf(build_dir, extension_dir, *arguments)
34
+ cd(build_dir) do
35
+ ruby(File.join(extension_dir, "extconf.rb"),
36
+ *arguments)
36
37
  end
37
38
  end
38
39
 
39
40
  spec.extensions.each do |extension|
40
- extension_dir = File.dirname(extension)
41
- CLOBBER << File.join(extension_dir, "Makefile")
42
- CLOBBER << File.join(extension_dir, "mkmf.log")
41
+ extension_dir = File.join(base_dir, File.dirname(extension))
42
+ build_dir = ENV["BUILD_DIR"]
43
+ if build_dir
44
+ build_dir = File.join(build_dir, "red-arrow")
45
+ directory build_dir
46
+ else
47
+ build_dir = extension_dir
48
+ end
49
+ CLOBBER << File.join(build_dir, "Makefile")
50
+ CLOBBER << File.join(build_dir, "mkmf.log")
43
51
 
44
- makefile = File.join(extension_dir, "Makefile")
45
- file makefile do
46
- run_extconf(extension_dir)
52
+ makefile = File.join(build_dir, "Makefile")
53
+ file makefile => build_dir do
54
+ run_extconf(build_dir, extension_dir)
47
55
  end
48
56
 
49
57
  desc "Configure"
50
- task :configure do
51
- run_extconf(extension_dir)
58
+ task :configure => build_dir do
59
+ run_extconf(build_dir, extension_dir)
52
60
  end
53
61
 
54
62
  desc "Compile"
55
63
  task :compile => makefile do
56
- cd(extension_dir) do
64
+ cd(build_dir) do
57
65
  sh("make")
58
66
  end
59
67
  end
60
68
 
61
69
  task :clean do
62
- cd(extension_dir) do
70
+ cd(build_dir) do
63
71
  sh("make", "clean") if File.exist?("Makefile")
64
72
  end
65
73
  end
@@ -67,7 +75,9 @@ end
67
75
 
68
76
  desc "Run tests"
69
77
  task :test do
70
- ruby("test/run-test.rb")
78
+ cd(base_dir) do
79
+ ruby("test/run-test.rb")
80
+ end
71
81
  end
72
82
 
73
83
  task default: :test
@@ -79,8 +89,10 @@ task :benchmark do
79
89
  else
80
90
  FileList["benchmark/{,*/**/}*.yml"]
81
91
  end
82
- benchmarks.each do |benchmark|
83
- sh("benchmark-driver", benchmark)
92
+ cd(base_dir) do
93
+ benchmarks.each do |benchmark|
94
+ sh("benchmark-driver", benchmark)
95
+ end
84
96
  end
85
97
  end
86
98
 
@@ -19,24 +19,24 @@ module Arrow
19
19
  module GenericFilterable
20
20
  class << self
21
21
  def included(base)
22
- base.alias_method :filter_raw, :filter
23
- base.alias_method :filter, :filter_generic
22
+ base.__send__(:alias_method, :filter_raw, :filter)
23
+ base.__send__(:alias_method, :filter, :filter_generic)
24
24
  end
25
25
  end
26
26
 
27
- def filter_generic(filter)
27
+ def filter_generic(filter, options=nil)
28
28
  case filter
29
29
  when ::Array
30
- filter_raw(BooleanArray.new(filter))
30
+ filter_raw(BooleanArray.new(filter), options)
31
31
  when ChunkedArray
32
32
  if respond_to?(:filter_chunked_array)
33
- filter_chunked_array(filter)
33
+ filter_chunked_array(filter, options)
34
34
  else
35
35
  # TODO: Implement this in C++
36
- filter_raw(filter.pack)
36
+ filter_raw(filter.pack, options)
37
37
  end
38
38
  else
39
- filter_raw(filter)
39
+ filter_raw(filter, options)
40
40
  end
41
41
  end
42
42
  end
@@ -19,8 +19,8 @@ module Arrow
19
19
  module GenericTakeable
20
20
  class << self
21
21
  def included(base)
22
- base.alias_method :take_raw, :take
23
- base.alias_method :take, :take_generic
22
+ base.__send__(:alias_method, :take_raw, :take)
23
+ base.__send__(:alias_method, :take, :take_generic)
24
24
  end
25
25
  end
26
26
 
@@ -19,7 +19,7 @@ module Arrow
19
19
  class NullArrayBuilder
20
20
  class << self
21
21
  def buildable?(args)
22
- super and args.collect(&:class) != [Integer]
22
+ super and not (args.size == 1 and args[0].is_a?(Integer))
23
23
  end
24
24
  end
25
25
  end
@@ -91,5 +91,10 @@ module Arrow
91
91
  end
92
92
 
93
93
  alias_method :[], :find_field
94
+
95
+ alias_method :to_s_raw, :to_s
96
+ def to_s(show_metadata: false)
97
+ to_string_metadata(show_metadata)
98
+ end
94
99
  end
95
100
  end
@@ -155,10 +155,14 @@ module Arrow
155
155
  end
156
156
 
157
157
  def save_as_feather
158
- open_output_stream do |output|
159
- FeatherFileWriter.open(output) do |writer|
160
- writer.write(@table)
158
+ open_raw_output_stream do |output|
159
+ properties = FeatherWriteProperties.new
160
+ properties.class.properties.each do |name|
161
+ value = @options[name.to_sym]
162
+ next if value.nil?
163
+ properties.__send__("#{name}=", value)
161
164
  end
165
+ @table.write_as_feather(output, properties)
162
166
  end
163
167
  end
164
168
  end
@@ -304,6 +304,8 @@ module Arrow
304
304
  end
305
305
  end
306
306
 
307
+ filter_options = Arrow::FilterOptions.new
308
+ filter_options.null_selection_behavior = :emit_null
307
309
  sliced_tables = []
308
310
  slicers.each do |slicer|
309
311
  slicer = slicer.evaluate if slicer.respond_to?(:evaluate)
@@ -325,7 +327,7 @@ module Arrow
325
327
  to += n_rows if to < 0
326
328
  sliced_tables << slice_by_range(from, to)
327
329
  when ::Array, BooleanArray, ChunkedArray
328
- sliced_tables << filter(slicer)
330
+ sliced_tables << filter(slicer, filter_options)
329
331
  else
330
332
  message = "slicer must be Integer, Range, (from, to), " +
331
333
  "Arrow::ChunkedArray of Arrow::BooleanArray, " +
@@ -16,7 +16,7 @@
16
16
  # under the License.
17
17
 
18
18
  module Arrow
19
- VERSION = "0.16.0"
19
+ VERSION = "0.17.0"
20
20
 
21
21
  module Version
22
22
  numbers, TAG = VERSION.split("-")
@@ -24,3 +24,4 @@ require "zlib"
24
24
  require "test-unit"
25
25
 
26
26
  require_relative "helper/fixture"
27
+ require_relative "helper/omittable"
@@ -0,0 +1,36 @@
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
+ module Helper
19
+ module Omittable
20
+ def require_gi_bindings(major, minor, micro)
21
+ return if GLib.check_binding_version?(major, minor, micro)
22
+ message =
23
+ "Require gobject-introspection #{major}.#{minor}.#{micro} or later: " +
24
+ GLib::BINDING_VERSION.join(".")
25
+ omit(message)
26
+ end
27
+
28
+ def require_gi(major, minor, micro)
29
+ return if GObjectIntrospection::Version.or_later?(major, minor, micro)
30
+ message =
31
+ "Require GObject Introspection #{major}.#{minor}.#{micro} or later: " +
32
+ GObjectIntrospection::Version::STRING
33
+ omit(message)
34
+ end
35
+ end
36
+ end
@@ -19,6 +19,7 @@
19
19
 
20
20
  $VERBOSE = true
21
21
 
22
+ require "fileutils"
22
23
  require "pathname"
23
24
 
24
25
  (ENV["ARROW_DLL_PATH"] || "").split(File::PATH_SEPARATOR).each do |path|
@@ -31,6 +32,14 @@ lib_dir = base_dir + "lib"
31
32
  ext_dir = base_dir + "ext" + "arrow"
32
33
  test_dir = base_dir + "test"
33
34
 
35
+ build_dir = ENV["BUILD_DIR"]
36
+ if build_dir
37
+ build_dir = File.join(build_dir, "red-arrow")
38
+ FileUtils.mkdir_p(build_dir)
39
+ else
40
+ build_dir = ext_dir
41
+ end
42
+
34
43
  make = nil
35
44
  if ENV["NO_MAKE"] != "yes"
36
45
  if ENV["MAKE"]
@@ -42,15 +51,17 @@ if ENV["NO_MAKE"] != "yes"
42
51
  end
43
52
  end
44
53
  if make
45
- Dir.chdir(ext_dir.to_s) do
54
+ Dir.chdir(build_dir.to_s) do
46
55
  unless File.exist?("Makefile")
47
- system(RbConfig.ruby, "extconf.rb", "--enable-debug-build") or exit(false)
56
+ system(RbConfig.ruby,
57
+ (ext_dir + "extconf.rb").to_s,
58
+ "--enable-debug-build") or exit(false)
48
59
  end
49
60
  system("#{make} > #{File::NULL}") or exit(false)
50
61
  end
51
62
  end
52
63
 
53
- $LOAD_PATH.unshift(ext_dir.to_s)
64
+ $LOAD_PATH.unshift(build_dir.to_s)
54
65
  $LOAD_PATH.unshift(lib_dir.to_s)
55
66
 
56
67
  require_relative "helper"
@@ -76,20 +76,22 @@ class ArrayTest < Test::Unit::TestCase
76
76
  def setup
77
77
  values = [true, false, false, true]
78
78
  @array = Arrow::BooleanArray.new(values)
79
+ @options = Arrow::FilterOptions.new
80
+ @options.null_selection_behavior = :emit_null
79
81
  end
80
82
 
81
83
  test("Array: boolean") do
82
84
  filter = [nil, true, true, false]
83
85
  filtered_array = Arrow::BooleanArray.new([nil, false, false])
84
86
  assert_equal(filtered_array,
85
- @array.filter(filter))
87
+ @array.filter(filter, @options))
86
88
  end
87
89
 
88
90
  test("Arrow::BooleanArray") do
89
91
  filter = Arrow::BooleanArray.new([nil, true, true, false])
90
92
  filtered_array = Arrow::BooleanArray.new([nil, false, false])
91
93
  assert_equal(filtered_array,
92
- @array.filter(filter))
94
+ @array.filter(filter, @options))
93
95
  end
94
96
 
95
97
  test("Arrow::ChunkedArray") do
@@ -100,7 +102,7 @@ class ArrayTest < Test::Unit::TestCase
100
102
  filter = Arrow::ChunkedArray.new(chunks)
101
103
  filtered_array = Arrow::BooleanArray.new([nil, false, false])
102
104
  assert_equal(filtered_array,
103
- @array.filter(filter))
105
+ @array.filter(filter, @options))
104
106
  end
105
107
  end
106
108
 
@@ -92,6 +92,8 @@ class ChunkedArrayTest < Test::Unit::TestCase
92
92
  Arrow::BooleanArray.new([false, true, false]),
93
93
  ]
94
94
  @chunked_array = Arrow::ChunkedArray.new(arrays)
95
+ @options = Arrow::FilterOptions.new
96
+ @options.null_selection_behavior = :emit_null
95
97
  end
96
98
 
97
99
  test("Array: boolean") do
@@ -102,7 +104,7 @@ class ChunkedArrayTest < Test::Unit::TestCase
102
104
  ]
103
105
  filtered_chunked_array = Arrow::ChunkedArray.new(chunks)
104
106
  assert_equal(filtered_chunked_array,
105
- @chunked_array.filter(filter))
107
+ @chunked_array.filter(filter, @options))
106
108
  end
107
109
 
108
110
  test("Arrow::BooleanArray") do
@@ -113,7 +115,7 @@ class ChunkedArrayTest < Test::Unit::TestCase
113
115
  ]
114
116
  filtered_chunked_array = Arrow::ChunkedArray.new(chunks)
115
117
  assert_equal(filtered_chunked_array,
116
- @chunked_array.filter(filter))
118
+ @chunked_array.filter(filter, @options))
117
119
  end
118
120
 
119
121
  test("Arrow::ChunkedArray") do
@@ -128,7 +130,7 @@ class ChunkedArrayTest < Test::Unit::TestCase
128
130
  ]
129
131
  filtered_chunked_array = Arrow::ChunkedArray.new(filtered_chunks)
130
132
  assert_equal(filtered_chunked_array,
131
- @chunked_array.filter(filter))
133
+ @chunked_array.filter(filter, @options))
132
134
  end
133
135
  end
134
136
 
@@ -18,17 +18,32 @@
18
18
  class FeatherTest < Test::Unit::TestCase
19
19
  include Helper::Fixture
20
20
 
21
- def test_save_load
21
+ def setup
22
22
  columns = {
23
23
  "message" => Arrow::StringArray.new(["Start", "Crash", "Shutdown"]),
24
24
  "is_critical" => Arrow::BooleanArray.new([false, true, false]),
25
25
  }
26
- table = Arrow::Table.new(columns)
26
+ @table = Arrow::Table.new(columns)
27
27
 
28
- output = Tempfile.new(["red-arrow", ".feather"])
29
- table.save(output.path)
30
- output.close
28
+ @output = Tempfile.new(["red-arrow", ".feather"])
29
+ begin
30
+ yield(@output)
31
+ rescue
32
+ @output.close!
33
+ end
34
+ end
35
+
36
+ def test_default
37
+ @table.save(@output.path)
38
+ @output.close
39
+
40
+ assert_equal(@table, Arrow::Table.load(@output.path))
41
+ end
42
+
43
+ def test_compression
44
+ @table.save(@output.path, compression: :zstd)
45
+ @output.close
31
46
 
32
- assert_equal(table, Arrow::Table.load(output.path))
47
+ assert_equal(@table, Arrow::Table.load(@output.path))
33
48
  end
34
49
  end
@@ -16,6 +16,8 @@
16
16
  # under the License.
17
17
 
18
18
  class SchemaTest < Test::Unit::TestCase
19
+ include Helper::Omittable
20
+
19
21
  def setup
20
22
  @count_field = Arrow::Field.new("count", :uint32)
21
23
  @visible_field = Arrow::Field.new("visible", :boolean)
@@ -114,5 +116,19 @@ class SchemaTest < Test::Unit::TestCase
114
116
  end
115
117
  end
116
118
  end
119
+
120
+ sub_test_case("#to_s") do
121
+ test("show_metadata") do
122
+ require_gi_bindings(3, 4, 2)
123
+
124
+ schema = @schema.with_metadata("key" => "value")
125
+ assert_equal(<<-SCHEMA.chomp, schema.to_s(show_metadata: true))
126
+ count: uint32
127
+ visible: bool
128
+ -- metadata --
129
+ key: value
130
+ SCHEMA
131
+ end
132
+ end
117
133
  end
118
134
  end
@@ -698,9 +698,15 @@ visible: false
698
698
  end
699
699
 
700
700
  sub_test_case("#filter") do
701
+ def setup
702
+ super
703
+ @options = Arrow::FilterOptions.new
704
+ @options.null_selection_behavior = :emit_null
705
+ end
706
+
701
707
  test("Array: boolean") do
702
708
  filter = [nil, true, true, false, true, false, true, true]
703
- assert_equal(<<-TABLE, @table.filter(filter).to_s)
709
+ assert_equal(<<-TABLE, @table.filter(filter, @options).to_s)
704
710
  count visible
705
711
  0
706
712
  1 2 false
@@ -714,7 +720,7 @@ visible: false
714
720
  test("Arrow::BooleanArray") do
715
721
  array = [nil, true, true, false, true, false, true, true]
716
722
  filter = Arrow::BooleanArray.new(array)
717
- assert_equal(<<-TABLE, @table.filter(filter).to_s)
723
+ assert_equal(<<-TABLE, @table.filter(filter, @options).to_s)
718
724
  count visible
719
725
  0
720
726
  1 2 false
@@ -732,7 +738,7 @@ visible: false
732
738
  Arrow::BooleanArray.new([true, true]),
733
739
  ]
734
740
  filter = Arrow::ChunkedArray.new(filter_chunks)
735
- assert_equal(<<-TABLE, @table.filter(filter).to_s)
741
+ assert_equal(<<-TABLE, @table.filter(filter, @options).to_s)
736
742
  count visible
737
743
  0
738
744
  1 2 false
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: 0.16.0
4
+ version: 0.17.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-02-07 00:00:00.000000000 Z
11
+ date: 2020-04-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: extpp
@@ -265,6 +265,7 @@ files:
265
265
  - test/fixture/without-header.csv
266
266
  - test/helper.rb
267
267
  - test/helper/fixture.rb
268
+ - test/helper/omittable.rb
268
269
  - test/raw-records/test-basic-arrays.rb
269
270
  - test/raw-records/test-dense-union-array.rb
270
271
  - test/raw-records/test-list-array.rb
@@ -326,7 +327,7 @@ homepage: https://arrow.apache.org/
326
327
  licenses:
327
328
  - Apache-2.0
328
329
  metadata:
329
- msys2_mingw_dependencies: arrow>=0.16.0
330
+ msys2_mingw_dependencies: arrow>=0.17.0
330
331
  post_install_message:
331
332
  rdoc_options: []
332
333
  require_paths:
@@ -342,77 +343,77 @@ required_rubygems_version: !ruby/object:Gem::Requirement
342
343
  - !ruby/object:Gem::Version
343
344
  version: '0'
344
345
  requirements: []
345
- rubyforge_project:
346
- rubygems_version: 2.7.6.2
346
+ rubygems_version: 3.1.2
347
347
  signing_key:
348
348
  specification_version: 4
349
349
  summary: Red Arrow is the Ruby bindings of Apache Arrow
350
350
  test_files:
351
- - test/test-time64-data-type.rb
352
- - test/test-feather.rb
353
- - test/test-decimal128.rb
354
- - test/test-struct-array.rb
355
- - test/test-data-type.rb
356
- - test/test-list-data-type.rb
351
+ - test/test-orc.rb
352
+ - test/test-file-output-stream.rb
357
353
  - test/test-dense-union-data-type.rb
358
- - test/helper.rb
354
+ - test/test-record-batch-builder.rb
359
355
  - 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
360
362
  - test/test-table.rb
361
- - test/run-test.rb
362
- - test/test-timestamp-array.rb
363
- - test/test-date32-array.rb
364
- - test/test-array-builder.rb
365
- - test/test-date64-array.rb
366
- - test/test-record-batch-file-reader.rb
367
363
  - test/test-decimal128-data-type.rb
368
- - test/test-time.rb
369
- - test/test-timestamp-data-type.rb
370
- - test/test-column.rb
371
- - test/test-field.rb
372
- - test/test-decimal128-array.rb
373
- - test/test-csv-loader.rb
374
- - test/test-bigdecimal.rb
375
- - test/test-list-array.rb
376
- - test/test-time64-array.rb
377
- - test/test-rolling-window.rb
378
- - test/test-dictionary-data-type.rb
364
+ - test/fixture/TestOrcFile.test1.orc
379
365
  - test/fixture/integer-float.csv
380
- - test/fixture/without-header-float.csv
381
366
  - test/fixture/null-with-double-quote.csv
367
+ - test/fixture/with-header.csv
368
+ - test/fixture/without-header.csv
369
+ - test/fixture/without-header-float.csv
382
370
  - test/fixture/with-header-float.csv
383
- - test/fixture/TestOrcFile.test1.orc
384
371
  - test/fixture/null-without-double-quote.csv
385
- - test/fixture/without-header.csv
386
- - test/fixture/with-header.csv
387
372
  - test/fixture/float-integer.csv
388
- - test/test-orc.rb
389
- - test/test-null-array.rb
390
- - test/test-time32-data-type.rb
391
- - test/test-struct-data-type.rb
373
+ - test/run-test.rb
392
374
  - test/test-group.rb
393
- - test/test-buffer.rb
394
- - test/values/test-struct-array.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
395
381
  - test/values/test-basic-arrays.rb
396
- - test/values/test-list-array.rb
397
382
  - test/values/test-dense-union-array.rb
398
- - test/values/test-sparse-union-array.rb
399
- - test/test-slicer.rb
400
- - test/test-list-array-builder.rb
401
- - test/test-sparse-union-data-type.rb
402
- - test/test-record-batch-builder.rb
403
- - test/raw-records/test-struct-array.rb
404
- - test/raw-records/test-table.rb
405
- - test/raw-records/test-basic-arrays.rb
406
- - test/raw-records/test-list-array.rb
407
- - test/raw-records/test-dense-union-array.rb
383
+ - 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
408
387
  - test/raw-records/test-sparse-union-array.rb
409
388
  - test/raw-records/test-multiple-columns.rb
410
- - test/test-array.rb
411
- - test/test-file-output-stream.rb
412
- - test/test-tensor.rb
389
+ - test/raw-records/test-basic-arrays.rb
390
+ - test/raw-records/test-table.rb
391
+ - test/raw-records/test-dense-union-array.rb
392
+ - 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
413
404
  - test/test-decimal128-array-builder.rb
414
- - test/test-chunked-array.rb
415
405
  - test/test-schema.rb
416
- - test/test-struct-array-builder.rb
417
- - test/helper/fixture.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
418
411
  - test/test-time32-array.rb
412
+ - test/test-buffer.rb
413
+ - test/test-decimal128-array.rb
414
+ - test/helper/omittable.rb
415
+ - 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