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 1801ff6 commit 6ae6235Copy full SHA for 6ae6235
awswrangler/_data_types.py
@@ -537,6 +537,8 @@ def athena_types_from_pandas(
537
"pass the column schema as argument for AWS Data Wrangler "
538
f"(e.g. dtype={{'{k}': 'string'}}"
539
) from ex
540
+ except exceptions.UnsupportedType as ex:
541
+ raise exceptions.UnsupportedType(f"Unsupported Pyarrow type: {v} for column {k}") from ex
542
_logger.debug("athena_columns_types: %s", athena_columns_types)
543
return athena_columns_types
544
0 commit comments