As per the MySQL documentation:
MySQL converts TIMESTAMP values from the current time zone to UTC for storage, and back from UTC to the current time zone for retrieval.
I am ok with the conversion for the retrieval but for storage I already have an UTC timestamp. It is sent like this from the client as it is a value calculated on the client side and I want to avoid time zone conversions (because I think this will add complexity to the client-server communication).
How can I insert this value avoiding further conversion?