Skip to content

[Ruby] Fix Date values in ArrowFormat::Date32Array #51271

Description

@emecii

Describe the bug, including details regarding any error messages, version, and platform.

ArrowFormat::Date32Array encodes Ruby Date values with Date#day, which is the day of the month. Arrow Date32 values must be the number of days since the Unix epoch. This also affects ArrowFormat::Array.build, which infers Date32Array for Date values.

On current main (df40dd400):

require "date"
require "arrow-format"

value = Date.new(2026, 7, 17)
array = ArrowFormat::Array.build([value])
p array.to_a
# Actual:   [17]
# Expected: [20651]

The existing ArrayBuilder date test compares against another Date32Array built from the same Date, so both sides pass through the same incorrect conversion and the regression is not detected.

Component(s)

Ruby

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions