Small fix for Presto dtype map (#8251)

* Small fix for Presto dtype map

* Add unit test
This commit is contained in:
Beto Dealmeida
2019-09-18 12:46:50 -07:00
committed by GitHub
parent 8d04e1f55f
commit 4088a84eb4
2 changed files with 8 additions and 2 deletions

View File

@@ -53,8 +53,8 @@ pandas_dtype_map = {
"real": "float64",
"double": "float64",
"varchar": "object",
"timestamp": "datetime64",
"date": "datetime64",
"timestamp": "datetime64[ns]",
"date": "datetime64[ns]",
"varbinary": "object",
}