Mark Paluch
Mark Paluch
@sothawo what do you think?
Closing as this pull request wasn't updated in time. If you would like us to look at this issue, please provide additional information and we will re-open the issue.
`maxLifeTime` requires a workaround in R2DBC Pool as it cannot be used together with max idle eviction. Since you've seen an issue, we configure an [eviction predicate](https://github.com/r2dbc/r2dbc-pool/blob/main/src/main/java/io/r2dbc/pool/ConnectionPool.java#L295-L304) that decides whether...
We initially didn't want to enable `forceQuote` for R2DBC to retain compatibility. It would make sense to align for the next major revision, so feel free to submit a pull...
It goes into the right direction. I would keep it really simple, adding `value()` with an alias for `name()` and defaulting to the initial values. `@SqlType` should be really a...
I prefer a dedicated interface as in `SqlTypeResolver`. I am not sure that `AnnotatedElement` is a good parameter type as we might want to employ type resolution for other use-cases...
Remove the `Optional` for `@Nullable`, and see https://github.com/spring-projects/spring-data-relational/issues/2020#issuecomment-2758334738 for guidance. The rest looks proper.
I don't like the `int value()` approach because it limits usage to a numeric code only without the possibility to adapt to other kinds of resolution information. `@JdbcType` on the...
Have you been able to take a look at `AbstractRoutingConnectionFactory` that has routing functionality towards different `ConnectionFactory`s?
Customizing `ExampleMatcher` is a reasonable request. Introducing a strategy interface that creates `ExampleMatcher` would be my initial approach. I'm not quite sure about the context that we should provide to...