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
Convert Query to Expression<T> for usage as subquery
Query can now be converted to a typed expression to support use of subqueries.
Introduce SqlStatement to replace awkward usages of Expression when no type is needed
nor known.
Move specific operations to Select
Remove grouping, distinct and having from Query and make them specific to Select.
Other types of queries, such as unions, might not some of them.
Use TIMESTAMP WITH TIMEZONE for Instant type columns
Change SQL type for Instant columns to TIMESTAMP WITH TIMEZONE
using the UTC timezone. This better fits the fact that a
timestamp is a point on the timeline. Some drivers (e.g. Postgres)
always store timestamps in UTC and getting the timestamp
in the client timezone (see JDBC spec) is confusing.
TIMESTAMP (WITHOUT TIMEZONE) is reserved for LocalDate.