I am using Hive 2.6.5 and when i want to add days to my timestamp, it doesn't keep the hours, minutes and seconds.
Exemple
SELECT from_unixtime(unix_timestamp(date_add("2021-01-15 09:34:21",2),'yyyyMMdd'),'yyyy-MM-dd HH:mm:ss');
in addition to that it returns a wrong result as :
2020-12-01 **00:00:00**
I would like it to return the value
2021-01-17 09:34:21
Thank you