I am using prestodb with hive metastore for schema storage and alluxio cache as external storage for data. The storage format used in alluxio and hive schema is PARQUET. While retrieving timestamp field from presto using hive catalog. I get follow error.
The column utdate is declared as type timestamp, but the Parquet file declares the column as type INT64
Schema for dataset is
create table test( utcdate timestamp ) WITH ( format='PARQUIET', external_location='alluxio://path-toserver/directory-path-to-parquet' )
This issue is produced after upgrade from prestodb v0.221 to v0.226 version.