class Parqueteur::Types::Time64Type

Public Instance Methods

arrow_type_builder() click to toggle source
# File lib/parqueteur/types/time64_type.rb, line 12
def arrow_type_builder
  Arrow::Time64DataType.new(
    options.fetch(:unit, :second)
  )
end
build_value_array(values) click to toggle source
# File lib/parqueteur/types/time64_type.rb, line 6
def build_value_array(values)
  Arrow::Time64Array.new(
    @options.fetch(:precision, :second), values
  )
end