I have issued the following select statement against a HIVE table in HUE editor and got below result.
SELECT statestartdate,
to_date(from_unixtime(statestartdate, 'yyyy-MM-dd HH:mm:ss')) AS statestartdatestr
FROM processmining.InstanceUserPerformance limit 100
RESULT
statestartdate statestartdatestr
1363782909107 45186-07-24
QUESTION In the year area of the 'statestartdatestr' field, I am getting 45186 for some strange reason!? Could anyone point out why please? Thnx.