Skip to content

Commit

Permalink
Merge branch 'main' into fix/list-to-arrow-table-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger authored Apr 22, 2024
2 parents 5bba007 + 229a9d1 commit 5254589
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 37 deletions.
2 changes: 1 addition & 1 deletion awswrangler/_data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def pyarrow2athena( # noqa: PLR0911,PLR0912
return "timestamp"
if pa.types.is_date(dtype):
return "date"
if pa.types.is_binary(dtype):
if pa.types.is_binary(dtype) or pa.types.is_fixed_size_binary(dtype):
return "binary"
if pa.types.is_dictionary(dtype):
return pyarrow2athena(dtype=dtype.value_type, ignore_null=ignore_null)
Expand Down
Loading

0 comments on commit 5254589

Please sign in to comment.