I'm casting a datefeild into time stamp in hive as from_unixtime(unix_timestamp(), 'yyyy-MM-dd HH:mm:ss') as timestamp) as column_name,
when I query it through impala time is displaying in GMT format. Not only the column I created every timestamp field is converting into GMT format.
How to make it display the time as is ? or how can I convert it into est ?
please help with sql query or with the spark/scala code, I tried with this How to convert a Date String from UTC to Specific TimeZone in HIVE? it dint help me.