Jens Schauder
Jens Schauder
We discussed this internally. Are inclined to accept such a PR. Could you layout, how the annotation would look like. I expect it would contain some SQL-snippet String?
Hi we had some discussion on the matter and concluded, that we need some more thinking time, since a feature like this will have quite a ripple effect. Vacation time...
It was only removed for R2DBC since the PG* types are part of the JDBC driver and therefore not present for R2DBC. Please provide a [Minimimal Reproducable Example](https://stackoverflow.com/help/minimal-reproducible-example), preferable as...
The problem is that the simpleTypes from the dialect don't get registered with the `CustomConfiguration`. And this happens because you overwrite the method that does that: [`AbstractJdbcConfiguration.jdbcCustomConversions()`](https://github.com/spring-projects/spring-data-relational/blob/fbc3bf09e1b93ce887b230354dc54376e002007e/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/config/AbstractJdbcConfiguration.java#L155) Instead overwrite [`userConverters()`](https://github.com/spring-projects/spring-data-relational/blob/fbc3bf09e1b93ce887b230354dc54376e002007e/spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/config/AbstractJdbcConfiguration.java#L169)....
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...
This might be related to #1680 I was able to reproduce this with DB2. Other databases don't throw an exceptions but still produce a select statement containing the same column...
After some more investigation, there are a couple of things wrong with the mapping. The relation between `Aaa` and `Bbb` is one internal to the aggregate of `Aaa`, but you...
From a quick look at your proposal I see problems with: * Nested selects especially with `WITH` clause. * Selects that contain String expressions that look like parts ofSQL statements...
And the same typo is in the readme ...
This sounds very much like a Hibernate issue, since all the JPA mapping and almost all of the conversions are done by it. I recommend creating a reproducer based purely...