Sha256: 4d3ff2d1e5a16631be9c6accb8fbd3c87160eab2c2329263894f1a6bbc3a57d7

Contents?: true

Size: 1.39 KB

Versions: 18

Compression:

Stored size: 1.39 KB

Contents

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you 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 TestBooleanStatistics < Test::Unit::TestCase
  def setup
    file = Tempfile.open(["data", ".parquet"])
    array = Arrow::BooleanArray.new([nil, false, true])
    table = Arrow::Table.new("boolean" => array)
    writer = Parquet::ArrowFileWriter.new(table.schema, file.path)
    chunk_size = 1024
    writer.write_table(table, chunk_size)
    writer.close
    reader = Parquet::ArrowFileReader.new(file.path)
    @statistics = reader.metadata.get_row_group(0).get_column_chunk(0).statistics
  end

  def test_min
    assert_equal(false, @statistics.min)
  end

  def test_max
    assert_equal(true, @statistics.max)
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
red-parquet-18.1.0 test/test-boolean-statistics.rb
red-parquet-18.0.0 test/test-boolean-statistics.rb
red-parquet-17.0.0 test/test-boolean-statistics.rb
red-parquet-16.0.0 test/test-boolean-statistics.rb
red-parquet-15.0.2 test/test-boolean-statistics.rb
red-parquet-15.0.1 test/test-boolean-statistics.rb
red-parquet-15.0.0 test/test-boolean-statistics.rb
red-parquet-14.0.2 test/test-boolean-statistics.rb
red-parquet-14.0.1 test/test-boolean-statistics.rb
red-parquet-14.0.0 test/test-boolean-statistics.rb
red-parquet-13.0.0 test/test-boolean-statistics.rb
red-parquet-12.0.1 test/test-boolean-statistics.rb
red-parquet-12.0.0 test/test-boolean-statistics.rb
red-parquet-11.0.0 test/test-boolean-statistics.rb
red-parquet-10.0.1 test/test-boolean-statistics.rb
red-parquet-10.0.0 test/test-boolean-statistics.rb
red-parquet-9.0.0 test/test-boolean-statistics.rb
red-parquet-8.0.0 test/test-boolean-statistics.rb