-
Notifications
You must be signed in to change notification settings - Fork 36
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
Enable Hibernate Reactive tests for PostgreSQL, MariaDB and MySQL #1126
Enable Hibernate Reactive tests for PostgreSQL, MariaDB and MySQL #1126
Conversation
run tests |
Debugging OC failures. |
4b6c1cb
to
8519d14
Compare
Opened issue as I wasted loads of time on this quarkusio/quarkus#32040. |
85c194c
to
7f74778
Compare
run tests |
I'll check native (and don't do anything till it's fixed) :-/ |
It's like never ending story.... |
It is! You can drop |
As for OpenShift failures, they all succeeded when run from my workstation (in terms of Hibernate Reactive modules), so there must be some difference when run from CI, I am on it. |
Created upstream issue for native failure: quarkusio/quarkus#32114 |
7f74778
to
f0a68ae
Compare
run tests |
There is one OpenShift JVM mode failure now - |
Summary
quarkusio/quarkus#31454 is merged, so we should be testing Hibernate Reactive for PostgreSQL, MariaDB and MySQL, while MsSQL and Oracle will work in next release quarkusio/quarkus#32102 (comment).
Changes:
DROP TABLE
didn't work and logged constraint violation (correct behavior)Author
andBook
to unidirectional@OneToMany
. Previously we had some hybrid between unidirectional and bidirectional mapping that doesn't work anymore due to casting exception. In my understanding that's absolutely correct behavior - for bidirectional mapping you need entity on the other side, while we were using primitive type without@ManyToOne
but still set@OneToMany#mappedBy
.MariaDB102Dialect
toMariaDBDialect
as former is not supported anymore and we don't use legacy database@WithSession
due to recent changes in Panache Hibernate reactive panache refactoring quarkusio/quarkus#29761,@WithSession
does not supportMulti
@ReactiveTransactional
has been marked for removal, so I changed one of 2 usages in Spring Web Reactive ti@WithTransaction
in order to have tested preferred wayPlease select the relevant options.
run tests
phrase in comment)Checklist: