JohnOmernik / sqlalchemy-drill

Apache Drill Dialect for SQL Alchemy
Other
53 stars 35 forks source link

Fix time data type #55

Closed cgivre closed 3 years ago

cgivre commented 3 years ago

The time data type from Drill seems to break Superset. The cause seems to be that Pandas lacks a time data type. The original implementation converted the time to a timedelta datatype, which Superset could not interpret.
The fix reverts it back to a generic object.