I have created a table coming from CSV upload which has a unix timestamp in the form of 1613775600. At import phase, QuestDB casts it as Int.
How can I set this field as the TIMESTAMP column ?
I tried this in my SELECT:
cast(unixDate AS TIMESTAMP)
but it does not correctly parses the unix date, giving inconsistent dates.