I'm using Pyarrow, Pyarrow.Parquet as well as Pandas. When I send a Pandas datetime64[ns]
series to a Parquet file and load it again via a drill query, the query shows an Integer like: 1467331200000000 which seems to be something else than a UNIX timestamp.
The query looks like this:
SELECT workspace.id-column AS id-column, workspace.date-column AS date-column
When I open that file within Python again, it loads correctly and still has its datetime64[ns]
type.
Any idea what's going wrong and how to solve this? I want this value being shown as a regular date.