* @return the SQL time-stamp, not null
*/
public static Timestamp toSqlTimestamp(Instant instant) {
ArgumentChecker.notNull(instant, "instant");
OffsetDateTime utc = OffsetDateTime.ofInstant(instant, ZoneOffset.UTC);
return toSqlDateTime(utc.toLocalDateTime());
}
/**
* Creates an {@code Instant} from an SQL time-stamp.
*