We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1f5792 commit a7756b6Copy full SHA for a7756b6
awswrangler/_data_types.py
@@ -46,7 +46,7 @@ def pyarrow2athena( # noqa: PLR0911,PLR0912
46
return "timestamp"
47
if pa.types.is_date(dtype):
48
return "date"
49
- if pa.types.is_binary(dtype):
+ if pa.types.is_binary(dtype) or pa.types.is_fixed_size_binary(dtype):
50
return "binary"
51
if pa.types.is_dictionary(dtype):
52
return pyarrow2athena(dtype=dtype.value_type, ignore_null=ignore_null)
0 commit comments