What is the 3 digit difference between Java Instant & Postgres TIMESTAMPTZ?
Given the following field in Java: private Instant createdDate = Instant.now(); corresponding to the following field in Postgres: created_date TIMESTAMPTZ NOT NULL DEFAULT CURRENT_TIMESTAMP; and saved to database using Spring Data JDBC CrudRepository save(S entity). When checking for equality the…