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 6310072 commit ac774bbCopy full SHA for ac774bb
awswrangler/__version__.py
@@ -1,4 +1,4 @@
1
__title__ = "awswrangler"
2
__description__ = "Utility belt to handle data on AWS."
3
-__version__ = "0.0b16"
+__version__ = "0.0b17"
4
__license__ = "Apache License 2.0"
awswrangler/glue.py
@@ -152,7 +152,7 @@ def _type_pandas2athena(dtype):
152
elif dtype == "object" and isinstance(dtype, str):
153
return "string"
154
elif dtype[:10] == "datetime64":
155
- return "string"
+ return "timestamp"
156
else:
157
raise UnsupportedType("Unsupported Pandas type: " + dtype)
158
0 commit comments