Denis Stepanov
Denis Stepanov
This is an enhancement request, not a bug report. The `contextCapture` works as the JavaDoc describes. I think it should be named `contextCaptureOnSubscribe` as it is confusing that the capture...
Can somebody from the Hibernate team provide an example of how to schedule the operation back to the proper context?
It can be raw Hibernate Reactive; I will adopt it for Micronaut Data. I just want to see if it's possible. Last time, I spent quite some time and didn't...
How is pagination supposed to work here? The limit would need to be distinct, too, somehow.
I don't think pagination like we have it now will work with JOINs, because our implementation just adds LIMIT to the end of the query. You would expect it to...
I wonder how Hibernate is doing; it looks like a pretty complex problem.
The issue is only with Micronaut Data JDBC / R2DBC, paginating of joined tables is a bit problematic
I think we can fix this by converting the value
I assume you are using `@MicronautTest` which is using the TX by default, you need `@MicronautTest(transactional=false)`
You cannot disable it globally for MongoDB. The documentation was written when we only had JPA, and TX manager was only one. Have you tried `@MicronautTest(transactional=false)`?