hibernate-reactive
hibernate-reactive copied to clipboard
A reactive API for Hibernate ORM, supporting non-blocking database drivers and a reactive style of interaction with the database.
[GeneratedPropertySingleTableTest](https://github.com/hibernate/hibernate-reactive/blob/main/hibernate-reactive-core/src/test/java/org/hibernate/reactive/GeneratedPropertySingleTableTest.java) uses native sql queries, so we only tests some dbs. Because the code executed might be quite different among databases, we should probably make sure that the test passes...
I'm using quarkus 3.9.3 with hibernate reactive. database is pg. When I call createNativeQuery and the query table result contains field which type is json will cause NPE. The reason...
At the moment we can pass criteria using `.createQuery`, but HIbernate ORM is moving toward `.createMutationQuery` and `.createSelectionQuery` and we should do the same. We have already implemented those methods...
Here the most common issues I noticed: * Fetching lazy associations * Illegal pop exception * https://stackoverflow.com/questions/68044517/hibernate-unidirectional-onetomany-relationship-with-not-null-constraint-in-fore/68044816#68044816
While this approach works for Hibernate Reactive because is not that big of a project, we are not taking advantage of Gradle optimizations during the build. We should look into...
fixes https://github.com/hibernate/hibernate-reactive/issues/1929 Hey @DavideD 😃, I thought while I was at it for ORM, I might as well see about Reactive.... It seems that the only thing for Reactive was...
An exception is thrown when trying to load multiple entities with embedded ids: ``` java.lang.ClassCastException: class org.hibernate.sql.results.graph.embeddable.internal.EmbeddableInitializerImpl cannot be cast to class org.hibernate.reactive.sql.results.graph.ReactiveInitializer (org.hibernate.sql.results.graph.embeddable.internal.EmbeddableInitializerImpl and org.hibernate.reactive.sql.results.graph.ReactiveInitializer are in unnamed module...
We need to wait for the Hibernate ORM release. We need the following changes: https://hibernate.atlassian.net/browse/HHH-18431
Models: ```java @Entity @Data //This is main entity public class Collection { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String name; @OneToMany(mappedBy = "belongsTo", cascade = CascadeType.ALL) @OrderBy("id desc")...