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.
Apparently it's not currently implemented: https://github.com/hibernate/hibernate-reactive/blob/380a4e3888e8340042e552e4ad8ec1db232f21a1/hibernate-reactive-core/src/main/java/org/hibernate/reactive/loader/collection/impl/ReactivePaddedBatchingCollectionInitializerBuilder.java#L35 If I set the batch fetch style to `PADDED`, the batch fetch size to `16`, and I have a collection table somewhere, startup fails...
See HHH-14312 and https://github.com/hibernate/hibernate-orm/pull/3631
We've introduced [ProxyConnection](https://github.com/hibernate/hibernate-reactive/blob/main/hibernate-reactive-core/src/main/java/org/hibernate/reactive/pool/impl/ProxyConnection.java) to create a connection lazily but [we have then decided to remove it](https://github.com/hibernate/hibernate-reactive/issues/950). The plan was to remove this class before 1.0 Final but it has caused...
If we upgrade to MySQL 8.0.29 (without chaniging anything else) the test `org.hibernate.reactive.UnionSubclassInheritanceTest` will fail because the delete of the entity doesn't occurs: ``` Expected null java.lang.AssertionError: Expected null at...
Fix #929 It's a draft because I need to review it
Right now we [have a comment here](https://github.com/hibernate/hibernate-reactive/blob/137673b27e853ac4d83155d1ad93060cc27824f4/release/build.gradle#L27).
For testing and examples, it would be nice to have support for an in-memory database like H2. There is actually an example in the Vert.x SQL Client documentation on how...
See this PR for ORM: https://github.com/hibernate/hibernate-test-case-templates/pull/159
``` @Version @Source(SourceType.DB) Date version ``` causes: ``` Caused by: java.sql.SQLException: Not using JDBC ``` It happens because, at some point, it calls `org.hibernate.type.DbTimestampType.seed`. I think we need a reactive...