-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new @SQLSelect annotation does not work #1627
Comments
@davide Pushed a commit of a Reactive version of ORM's I think the current errors are due to two things that are missing in Reactive.
|
I gave a look and it seems to happen because we don't wrap the NamedObjectRepository into a ReactiveNamedObjectRepository in ReactiveAbstractPersisterDelegate#createReactiveSingleIdEntityLoader. I haven't looked too much into it, but I think we should add a
We also need to wrap the result of ReactiveNamedObjectRepositoryImpl.java#resolve. Otherwise it won't return a reactive query. |
Also, this seems very wrong: Line 54 in 29c518e
|
thx.. been working on this and pushed a couple changes more changes. |
I think we can remove the association of embeddable for the sake of making the test simpler
I think we can remove the association of embeddable for the sake of making the test simpler
If I add:
to
org.hibernate.reactive.example.nativesql.Author
, I get:This issue appears to be that the
$1
is not recognized. But changing it to?
or?1
does not seem to help.The text was updated successfully, but these errors were encountered: