Greg L. Turnquist
Greg L. Turnquist
@DiegoKrupitza Considering EclipseLink is an optional dependency, we could alter `QueryEnhancerFactory` as follows: ```java /** * Creates a new {@link QueryEnhancer} for the given {@link DeclaredQuery}. * * @param query...
I was getting the impression is that this is more about the deferred execution of reactive streams not being clearly visible. It implies that `execute` should be something like `executeUponSubscription`....
To be fair, Reactor has `toStream` to clarify you are going, you know, _to a Stream_. And to differentiate from it's `fromStream` method, which indicates the opposite direction.
I could see `client.sql(“insert ...”)......execute()` being clearer than `execute`/`fetch`. After all, inserts don’t “fetch”. When exploring the API, what is clearer than the IDE showing you `sql` in the drop...
I'm curious how this would pan out in light of this [comment on r2dbc-h2](https://github.com/r2dbc/r2dbc-h2/issues/9#issuecomment-450644723). Do we need some enum at the SPI level that explicitly demarks insert/update/whatever, and that the...
Related to https://github.com/spring-projects/spring-data-jdbc/issues/838.
@lukaseder Does #229 fix this issue?
May be related to #77 .
You said "we are using postgres db". Have you logged this with https://github.com/pgjdbc/r2dbc-postgresql?
@javiersvg What are the odds you could submit a small github repo containing a demo of this issue/solution for me to verify against?