Sha256: 189ca2e133e64e20bb50f6b04b432c708beab3a4e5f1c24990f9e027ad6ef043
Contents?: true
Size: 1.73 KB
Versions: 1
Compression:
Stored size: 1.73 KB
Contents
# Copyright 2018 Kouhei Sutou <kou@clear-code.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. class TestArrowTableReader < Test::Unit::TestCase def setup @count_field = Arrow::Field.new("count", :uint8) @visible_field = Arrow::Field.new("visible", :boolean) schema = Arrow::Schema.new([@count_field, @visible_field]) count_arrays = [ Arrow::UInt8Array.new([1, 2]), Arrow::UInt8Array.new([4, 8, 16]), Arrow::UInt8Array.new([32, 64]), Arrow::UInt8Array.new([128]), ] visible_arrays = [ Arrow::BooleanArray.new([true, false, nil]), Arrow::BooleanArray.new([true]), Arrow::BooleanArray.new([true, false]), Arrow::BooleanArray.new([nil]), Arrow::BooleanArray.new([nil]), ] @count_array = Arrow::ChunkedArray.new(count_arrays) @visible_array = Arrow::ChunkedArray.new(visible_arrays) @count_column = Arrow::Column.new(@count_field, @count_array) @visible_column = Arrow::Column.new(@visible_field, @visible_array) @table = Arrow::Table.new(schema, [@count_column, @visible_column]) end def test_save_load tempfile = Tempfile.open(["red-parquet", ".parquet"]) @table.save(tempfile.path) assert_equal(@table, Arrow::Table.load(tempfile.path)) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
red-parquet-0.0.2 | test/test-arrow-table.rb |