hibernate-reactive icon indicating copy to clipboard operation
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.

Results 156 hibernate-reactive issues
Sort by recently updated
recently updated
newest added

Vertx reactive driver return jsonb fields as a JsonObject, but hibernate only expects Strings, and seems theres no built-in user type to support vertx JsonObject There is JsonType in here,...

We are using MSSQL client ``` io.vertx vertx-mssql-client 4.3.4 org.hibernate.reactive hibernate-reactive-core 1.1.9.Final ``` and when we send a query we are getting this error ``` ERROR 14760 --- [ntloop-thread-0] org.hibernate.reactive.errors...

See https://github.com/hibernate/hibernate-reactive/blob/a0117ad42af25357ed622dcfe2196c05d239a80f/hibernate-reactive-core/src/test/java/org/hibernate/reactive/BatchFetchTest.java#L55

regression

It would seem that if I introduce assertions to check that the current transaction is terminated (in any way) before we close the connection, there's at least one test failing:...

bug

These are minor improvements to check for valid assumptions in `SqlClientConnection`; it's currently triggering the failure of an existing test - hence consider this a failing test for issue #1514

See https://github.com/hibernate/hibernate-reactive/blob/92b7b0fc8550b8ecd7a7124d70fdba3859f8ce7f/hibernate-reactive-core/src/main/java/org/hibernate/reactive/loader/entity/ReactiveCacheEntityLoaderHelper.java#L134 We need to make sure that everything is chained correctly. Same error happens in main

bug

Given the following minimal models in Hibernate Reactive version associated with Quarkus platform version 2.13.3.Final: ``` @Entity public class Person { @Id @GeneratedValue(strategy = IDENTITY) private Long id; @NotNull private...

hello, I was wondering if this was something possible to implement in reactive. Currently, the reactive session does not support the `.save` method for being able to work with a...

enhancement

It looks like would be relatively straightforward to add support for having the `@PrePersist` callback and friends return a `Uni`. To be clear, we would not be able to reuse...

enhancement