Does anyone also find this weird? ``` val timestam...
# random
p
Does anyone also find this weird?
Copy code
val timestamp = Timestamp.from(Instant.EPOCH)
println(Instant.EPOCH)  // 1970-01-01T00:00:00Z
println(timestamp)      // 1969-12-31 19:00:00.0
Why is
Timestamp.from
messing around with time zones? It's a TIMESTAMP
stackoverflow 5