Skip to content

Commit

Permalink
add some_fixed_binary
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Filipek committed Jan 1, 2024
1 parent 14b53bc commit b1eba1d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/tests/test_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,12 +235,14 @@ def test_delta_schema():
[
pa.field("some_int", pa.uint32(), nullable=True),
pa.field("some_string", pa.string(), nullable=False),
pa.field("some_fixed_binary", pa.binary(5), nullable=False),
]
),
pa.schema(
[
pa.field("some_int", pa.int32(), nullable=True),
pa.field("some_string", pa.string(), nullable=False),
pa.field("some_fixed_binary", pa.binary(), nullable=False),
]
),
False,
Expand Down

0 comments on commit b1eba1d

Please sign in to comment.