Jens Schauder
Jens Schauder
We are willing to support this, but since it is Hibernate specific it isn't high on our priority list. But a PR would be welcome, even one detailing what metadata...
As a workaround you can always create a custom method implementation instead of relying on query derivation.
EclipseLink is only an optional dependency and we certainly don't want force Hibernate users to also depend on EclipsesLink. But I guess somewhere in the Hibernate code is a JPQL...
This seems to be a Hibernate issue. Formulating a `CriteriaQuery` with type `Tuple` and selecting the `Address` it gets returned as `null`. See the tests I added to your example:...
> Mind if I reference your repository with the failing tuple query? I don't mind at all. But be aware that the Hibernate team isn't to fond of reproducers involving...
@ShaneLee a quick pointer would be to look for "PartTree" related classes. You'll find lengthy if/else/switch conditions. Basically we would need to extract all the information of those into an...
Related: https://github.com/spring-projects/spring-data-jdbc/issues/509
Currently only a few types are supported for arrays, which we can map straight to database types. We need to extend this to a) consider `Dialect` specific conversions which will...
Please provide a [Minimimal Reproducable Example](https://stackoverflow.com/help/minimal-reproducible-example), preferable as a Github repository. Make sure to include the database, either as an in memory database or if that is not possible using...
We do make a mistake when determining the `JdbcType` to pass with the `Timestamp`. You can work around that by returning a `JdbcValue` which already contains the `JdbcType`: ``` @WritingConverter...