You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a timestamp with time zone column is set to an ISO date value such as 2023-01-01, Vert.x PostgreSQL client returns the value as '2020-01-01T00:00Z'.
This is problematic since e.g. Java's Instant::parse requires an ISO 8601 timestamp with seconds included. Consequently, doing row.toJson().getInstant('created') fails with a DateTimeParseException.
Expected behavior: Ensure the returned timestamp includes seconds, i.e. '2020-01-01T00:00:00Z' in the above example.